From 29510f89107fcda5b73af1c5077890214a35ed92 Mon Sep 17 00:00:00 2001
From: rachmari <rachmari@users.noreply.github.com>
Date: Mon, 28 Feb 2022 16:43:46 +0000
Subject: [PATCH 1/3] Action ran graphql script"update-files"

---
 .../graphql_upcoming_changes.public-ghae.yml  |   14 +
 data/graphql/ghae/schema.docs-ghae.graphql    |   21 +-
 .../ghec/graphql_upcoming_changes.public.yml  |   22 +
 data/graphql/ghec/schema.docs.graphql         |   77 +-
 .../graphql_upcoming_changes.public.yml       |   22 +
 data/graphql/schema.docs.graphql              |   77 +-
 lib/graphql/static/changelog.json             |   26 +
 .../static/prerendered-input-objects.json     | 3338 +++----
 lib/graphql/static/prerendered-mutations.json | 2398 ++---
 lib/graphql/static/prerendered-objects.json   | 7730 ++++++++---------
 lib/graphql/static/schema-dotcom.json         |   73 +
 lib/graphql/static/schema-ghae.json           |   24 +
 lib/graphql/static/schema-ghec.json           |   73 +
 lib/graphql/static/upcoming-changes.json      |   74 +
 14 files changed, 7233 insertions(+), 6736 deletions(-)

diff --git a/data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml b/data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml
index 35ebaf912eb7..6444e12c272e 100644
--- a/data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml
+++ b/data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml
@@ -114,3 +114,17 @@ upcoming_changes:
     date: '2021-10-01T00:00:00+00:00'
     criticality: breaking
     owner: synthead
+  - location: PullRequest.viewerCanOverrideMergeQueue
+    description:
+      '`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin
+      instead.'
+    reason: '`viewer_can_override_merge_queue` will be removed'
+    date: '2022-04-01'
+    criticality: breaking
+    owner: cbeaman
+  - location: Repository.defaultMergeQueue
+    description: '`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead.'
+    reason: '`defaultMergeQueue` will be removed.'
+    date: '2022-04-01'
+    criticality: breaking
+    owner: colinshum
diff --git a/data/graphql/ghae/schema.docs-ghae.graphql b/data/graphql/ghae/schema.docs-ghae.graphql
index 5c8e146a4d32..4866de4104af 100644
--- a/data/graphql/ghae/schema.docs-ghae.graphql
+++ b/data/graphql/ghae/schema.docs-ghae.graphql
@@ -1,3 +1,7 @@
+directive @requiredCapabilities(
+  requiredCapabilities: [String!]
+) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION
+
 """
 Marks an element of a GraphQL schema as only available via a preview header
 """
@@ -6,7 +10,7 @@ directive @preview(
   The identifier of the API preview that toggles this field.
   """
   toggledBy: String!
-) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
+) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION
 
 """
 Defines what type of global IDs are accepted for a mutation argument of type ID.
@@ -25392,6 +25396,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
   """
   viewerCanEnableAutoMerge: Boolean!
 
+  """
+  Indicates whether the viewer can bypass branch protections and merge the pull request immediately
+  """
+  viewerCanMergeAsAdmin: Boolean!
+
   """
   Can user react to this subject
   """
@@ -35667,6 +35676,11 @@ type StarredRepositoryEdge {
 Autogenerated input type of StartRepositoryMigration
 """
 input StartRepositoryMigrationInput {
+  """
+  The Octoshift migration source access token.
+  """
+  accessToken: String
+
   """
   A unique identifier for the client performing the mutation.
   """
@@ -35682,6 +35696,11 @@ input StartRepositoryMigrationInput {
   """
   gitArchiveUrl: String
 
+  """
+  The GitHub personal access token of the user importing to the target repository.
+  """
+  githubPat: String
+
   """
   The signed URL to access the user-uploaded metadata archive
   """
diff --git a/data/graphql/ghec/graphql_upcoming_changes.public.yml b/data/graphql/ghec/graphql_upcoming_changes.public.yml
index 79aa22aa5aa7..4892e2228c9b 100644
--- a/data/graphql/ghec/graphql_upcoming_changes.public.yml
+++ b/data/graphql/ghec/graphql_upcoming_changes.public.yml
@@ -126,3 +126,25 @@ upcoming_changes:
     date: '2021-10-01T00:00:00+00:00'
     criticality: breaking
     owner: synthead
+  - location: PullRequest.viewerCanOverrideMergeQueue
+    description:
+      '`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin
+      instead.'
+    reason: '`viewer_can_override_merge_queue` will be removed'
+    date: '2022-04-01'
+    criticality: breaking
+    owner: cbeaman
+  - location: Repository.defaultMergeQueue
+    description: '`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead.'
+    reason: '`defaultMergeQueue` will be removed.'
+    date: '2022-04-01'
+    criticality: breaking
+    owner: colinshum
+  - location: Query.sponsorables.dependencyEcosystem
+    description:
+      '`dependencyEcosystem` will be removed. Use the ecosystem argument
+      instead.'
+    reason: The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.
+    date: '2022-07-01T00:00:00+00:00'
+    criticality: breaking
+    owner: cheshire137
diff --git a/data/graphql/ghec/schema.docs.graphql b/data/graphql/ghec/schema.docs.graphql
index 37d8024a221f..18a9de0aed77 100644
--- a/data/graphql/ghec/schema.docs.graphql
+++ b/data/graphql/ghec/schema.docs.graphql
@@ -1,3 +1,7 @@
+directive @requiredCapabilities(
+  requiredCapabilities: [String!]
+) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION
+
 """
 Marks an element of a GraphQL schema as only available via a preview header
 """
@@ -6,7 +10,7 @@ directive @preview(
   The identifier of the API preview that toggles this field.
   """
   toggledBy: String!
-) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
+) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION
 
 """
 Defines what type of global IDs are accepted for a mutation argument of type ID.
@@ -7935,6 +7939,51 @@ type DependencyGraphDependencyEdge @preview(toggledBy: "hawkgirl-preview") {
   node: DependencyGraphDependency
 }
 
+"""
+The possible ecosystems of a dependency graph package.
+"""
+enum DependencyGraphEcosystem {
+  """
+  GitHub Actions
+  """
+  ACTIONS
+
+  """
+  PHP packages hosted at packagist.org
+  """
+  COMPOSER
+
+  """
+  Go modules
+  """
+  GO
+
+  """
+  Java artifacts hosted at the Maven central repository
+  """
+  MAVEN
+
+  """
+  JavaScript packages hosted at npmjs.com
+  """
+  NPM
+
+  """
+  .NET packages hosted at the NuGet Gallery
+  """
+  NUGET
+
+  """
+  Python packages hosted at PyPI.org
+  """
+  PIP
+
+  """
+  Ruby gems hosted at RubyGems.org
+  """
+  RUBYGEMS
+}
+
 """
 Dependency manifest for a repository
 """
@@ -28713,6 +28762,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
   """
   viewerCanEnableAutoMerge: Boolean!
 
+  """
+  Indicates whether the viewer can bypass branch protections and merge the pull request immediately
+  """
+  viewerCanMergeAsAdmin: Boolean!
+
   """
   Can user react to this subject
   """
@@ -31055,9 +31109,20 @@ type Query {
     Optional filter for which dependencies should be checked for sponsorable
     owners. Only sponsorable owners of dependencies in this ecosystem will be
     included. Used when onlyDependencies = true.
+
+    **Upcoming Change on 2022-07-01 UTC**
+    **Description:** `dependencyEcosystem` will be removed. Use the ecosystem argument instead.
+    **Reason:** The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.
     """
     dependencyEcosystem: SecurityAdvisoryEcosystem
 
+    """
+    Optional filter for which dependencies should be checked for sponsorable
+    owners. Only sponsorable owners of dependencies in this ecosystem will be
+    included. Used when onlyDependencies = true.
+    """
+    ecosystem: DependencyGraphEcosystem
+
     """
     Returns the first _n_ elements from the list.
     """
@@ -40957,6 +41022,11 @@ type StarredRepositoryEdge {
 Autogenerated input type of StartRepositoryMigration
 """
 input StartRepositoryMigrationInput {
+  """
+  The Octoshift migration source access token.
+  """
+  accessToken: String
+
   """
   A unique identifier for the client performing the mutation.
   """
@@ -40972,6 +41042,11 @@ input StartRepositoryMigrationInput {
   """
   gitArchiveUrl: String
 
+  """
+  The GitHub personal access token of the user importing to the target repository.
+  """
+  githubPat: String
+
   """
   The signed URL to access the user-uploaded metadata archive
   """
diff --git a/data/graphql/graphql_upcoming_changes.public.yml b/data/graphql/graphql_upcoming_changes.public.yml
index 79aa22aa5aa7..4892e2228c9b 100644
--- a/data/graphql/graphql_upcoming_changes.public.yml
+++ b/data/graphql/graphql_upcoming_changes.public.yml
@@ -126,3 +126,25 @@ upcoming_changes:
     date: '2021-10-01T00:00:00+00:00'
     criticality: breaking
     owner: synthead
+  - location: PullRequest.viewerCanOverrideMergeQueue
+    description:
+      '`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin
+      instead.'
+    reason: '`viewer_can_override_merge_queue` will be removed'
+    date: '2022-04-01'
+    criticality: breaking
+    owner: cbeaman
+  - location: Repository.defaultMergeQueue
+    description: '`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead.'
+    reason: '`defaultMergeQueue` will be removed.'
+    date: '2022-04-01'
+    criticality: breaking
+    owner: colinshum
+  - location: Query.sponsorables.dependencyEcosystem
+    description:
+      '`dependencyEcosystem` will be removed. Use the ecosystem argument
+      instead.'
+    reason: The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.
+    date: '2022-07-01T00:00:00+00:00'
+    criticality: breaking
+    owner: cheshire137
diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql
index 37d8024a221f..18a9de0aed77 100644
--- a/data/graphql/schema.docs.graphql
+++ b/data/graphql/schema.docs.graphql
@@ -1,3 +1,7 @@
+directive @requiredCapabilities(
+  requiredCapabilities: [String!]
+) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION
+
 """
 Marks an element of a GraphQL schema as only available via a preview header
 """
@@ -6,7 +10,7 @@ directive @preview(
   The identifier of the API preview that toggles this field.
   """
   toggledBy: String!
-) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
+) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION
 
 """
 Defines what type of global IDs are accepted for a mutation argument of type ID.
@@ -7935,6 +7939,51 @@ type DependencyGraphDependencyEdge @preview(toggledBy: "hawkgirl-preview") {
   node: DependencyGraphDependency
 }
 
+"""
+The possible ecosystems of a dependency graph package.
+"""
+enum DependencyGraphEcosystem {
+  """
+  GitHub Actions
+  """
+  ACTIONS
+
+  """
+  PHP packages hosted at packagist.org
+  """
+  COMPOSER
+
+  """
+  Go modules
+  """
+  GO
+
+  """
+  Java artifacts hosted at the Maven central repository
+  """
+  MAVEN
+
+  """
+  JavaScript packages hosted at npmjs.com
+  """
+  NPM
+
+  """
+  .NET packages hosted at the NuGet Gallery
+  """
+  NUGET
+
+  """
+  Python packages hosted at PyPI.org
+  """
+  PIP
+
+  """
+  Ruby gems hosted at RubyGems.org
+  """
+  RUBYGEMS
+}
+
 """
 Dependency manifest for a repository
 """
@@ -28713,6 +28762,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
   """
   viewerCanEnableAutoMerge: Boolean!
 
+  """
+  Indicates whether the viewer can bypass branch protections and merge the pull request immediately
+  """
+  viewerCanMergeAsAdmin: Boolean!
+
   """
   Can user react to this subject
   """
@@ -31055,9 +31109,20 @@ type Query {
     Optional filter for which dependencies should be checked for sponsorable
     owners. Only sponsorable owners of dependencies in this ecosystem will be
     included. Used when onlyDependencies = true.
+
+    **Upcoming Change on 2022-07-01 UTC**
+    **Description:** `dependencyEcosystem` will be removed. Use the ecosystem argument instead.
+    **Reason:** The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.
     """
     dependencyEcosystem: SecurityAdvisoryEcosystem
 
+    """
+    Optional filter for which dependencies should be checked for sponsorable
+    owners. Only sponsorable owners of dependencies in this ecosystem will be
+    included. Used when onlyDependencies = true.
+    """
+    ecosystem: DependencyGraphEcosystem
+
     """
     Returns the first _n_ elements from the list.
     """
@@ -40957,6 +41022,11 @@ type StarredRepositoryEdge {
 Autogenerated input type of StartRepositoryMigration
 """
 input StartRepositoryMigrationInput {
+  """
+  The Octoshift migration source access token.
+  """
+  accessToken: String
+
   """
   A unique identifier for the client performing the mutation.
   """
@@ -40972,6 +41042,11 @@ input StartRepositoryMigrationInput {
   """
   gitArchiveUrl: String
 
+  """
+  The GitHub personal access token of the user importing to the target repository.
+  """
+  githubPat: String
+
   """
   The signed URL to access the user-uploaded metadata archive
   """
diff --git a/lib/graphql/static/changelog.json b/lib/graphql/static/changelog.json
index c35a4ffc2812..9158e39a3567 100644
--- a/lib/graphql/static/changelog.json
+++ b/lib/graphql/static/changelog.json
@@ -1,4 +1,30 @@
 [
+  {
+    "schemaChanges": [
+      {
+        "title": "The GraphQL schema includes these changes:",
+        "changes": [
+          "Type `DependencyGraphEcosystem` was added",
+          "Field `viewerCanMergeAsAdmin` was added to object type `PullRequest`",
+          "Argument `ecosystem: DependencyGraphEcosystem` added to field `Query.sponsorables`",
+          "Input field `accessToken` was added to input object type `StartRepositoryMigrationInput`",
+          "Input field `githubPat` was added to input object type `StartRepositoryMigrationInput`"
+        ]
+      }
+    ],
+    "previewChanges": [],
+    "upcomingChanges": [
+      {
+        "title": "The following changes will be made to the schema:",
+        "changes": [
+          "On member `PullRequest.viewerCanOverrideMergeQueue`:`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin instead. **Effective 2022-04-01**.",
+          "On member `Repository.defaultMergeQueue`:`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead. **Effective 2022-04-01**.",
+          "On member `Query.sponsorables.dependencyEcosystem`:`dependencyEcosystem` will be removed. Use the ecosystem argument instead. **Effective 2022-07-01**."
+        ]
+      }
+    ],
+    "date": "2022-02-28"
+  },
   {
     "schemaChanges": [
       {
diff --git a/lib/graphql/static/prerendered-input-objects.json b/lib/graphql/static/prerendered-input-objects.json
index 9e5e74322363..c7f01d55ec4f 100644
--- a/lib/graphql/static/prerendered-input-objects.json
+++ b/lib/graphql/static/prerendered-input-objects.json
@@ -1,1745 +1,1745 @@
 {
   "dotcom": {
-    "html": "<div>\n  <div>\n    <h2 id=\"abortqueuedmigrationsinput\">\n      <a href=\"#abortqueuedmigrationsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AbortQueuedMigrationsInput</h2>\n    <p>Autogenerated input type of AbortQueuedMigrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that is running the migrations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"acceptenterpriseadministratorinvitationinput\">\n      <a href=\"#acceptenterpriseadministratorinvitationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AcceptEnterpriseAdministratorInvitationInput</h2>\n    <p>Autogenerated input type of AcceptEnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the invitation being accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"accepttopicsuggestioninput\">\n      <a href=\"#accepttopicsuggestioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AcceptTopicSuggestionInput</h2>\n    <p>Autogenerated input type of AcceptTopicSuggestion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the suggested topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncommentinput\">\n      <a href=\"#adddiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddDiscussionCommentInput</h2>\n    <p>Autogenerated input type of AddDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyToId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment within this discussion to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterprisesupportentitlementinput\">\n      <a href=\"#addenterprisesupportentitlementinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseSupportEntitlementInput</h2>\n    <p>Autogenerated input type of AddEnterpriseSupportEntitlement.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a member who will receive the support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectnextiteminput\">\n      <a href=\"#addprojectnextiteminput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectNextItemInput</h2>\n    <p>Autogenerated input type of AddProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The content id of the item (Issue or PullRequest).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to add the item to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvoteinput\">\n      <a href=\"#addupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddUpvoteInput</h2>\n    <p>Autogenerated input type of AddUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomaininput\">\n      <a href=\"#addverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddVerifiableDomainInput</h2>\n    <p>Autogenerated input type of AddVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner to add the domain to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeploymentsinput\">\n      <a href=\"#approvedeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveDeploymentsInput</h2>\n    <p>Autogenerated input type of ApproveDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for approving deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomaininput\">\n      <a href=\"#approveverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveVerifiableDomainInput</h2>\n    <p>Autogenerated input type of ApproveVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to approve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelenterpriseadmininvitationinput\">\n      <a href=\"#cancelenterpriseadmininvitationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CancelEnterpriseAdminInvitationInput</h2>\n    <p>Autogenerated input type of CancelEnterpriseAdminInvitation.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pending enterprise administrator invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelsponsorshipinput\">\n      <a href=\"#cancelsponsorshipinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CancelSponsorshipInput</h2>\n    <p>Autogenerated input type of CancelSponsorship.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitmessage\">\n      <a href=\"#commitmessage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitMessage</h2>\n    <p>A message to include with a new commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The headline of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"committablebranch\">\n      <a href=\"#committablebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommittableBranch</h2>\n    <p>A git ref for a commit to be appended to.</p>\n<p>The ref must be a branch, i.e. its fully qualified name must start\nwith <code>refs/heads/</code> (although the input is not required to be fully\nqualified).</p>\n<p>The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.</p>\n<h3 id=\"examples\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#examples\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Examples</h3>\n<p>Specify a branch using a global node ID:</p>\n<pre><code>{ &quot;id&quot;: &quot;MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=&quot; }\n</code></pre>\n<p>Specify a branch using nameWithOwner and branch name:</p>\n<pre><code>{\n  &quot;nameWithOwner&quot;: &quot;github/graphql-client&quot;,\n  &quot;branchName&quot;: &quot;main&quot;\n}.\n</code></pre>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The unqualified name of the branch to append the commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryNameWithOwner</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The nameWithOwner of the repository to commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraftinput\">\n      <a href=\"#convertpullrequesttodraftinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertPullRequestToDraftInput</h2>\n    <p>Autogenerated input type of ConvertPullRequestToDraft.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to convert to draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranchinput\">\n      <a href=\"#createcommitonbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCommitOnBranchInput</h2>\n    <p>Autogenerated input type of CreateCommitOnBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/graphql/reference/input-objects#committablebranch\">CommittableBranch!</a></code>)</p></td>\n<td><p>The Ref to be updated.  Must be a branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The git commit oid expected at the head of the branch prior to the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fileChanges</code> (<code><a href=\"/en/graphql/reference/input-objects#filechanges\">FileChanges</a></code>)</p></td>\n<td><p>A description of changes to files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/input-objects#commitmessage\">CommitMessage!</a></code>)</p></td>\n<td><p>The commit message the be included with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussioninput\">\n      <a href=\"#creatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDiscussionInput</h2>\n    <p>Autogenerated input type of CreateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion category to associate with this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the repository on which to create the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironmentinput\">\n      <a href=\"#createenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnvironmentInput</h2>\n    <p>Autogenerated input type of CreateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createmigrationsourceinput\">\n      <a href=\"#createmigrationsourceinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateMigrationSourceInput</h2>\n    <p>Autogenerated input type of CreateMigrationSource.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessToken</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source access token.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>githubPat</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The GitHub personal access token of the user importing to the target repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createsponsorshipinput\">\n      <a href=\"#createsponsorshipinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateSponsorshipInput</h2>\n    <p>Autogenerated input type of CreateSponsorship.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>amount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRecurring</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy</a></code>)</p></td>\n<td><p>Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>receiveEmails</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsor should receive email updates from the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tierId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of one of sponsorable&apos;s existing tiers to sponsor at. Required if amount is not specified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"declinetopicsuggestioninput\">\n      <a href=\"#declinetopicsuggestioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeclineTopicSuggestionInput</h2>\n    <p>Autogenerated input type of DeclineTopicSuggestion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the suggested topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/enums#topicsuggestiondeclinereason\">TopicSuggestionDeclineReason!</a></code>)</p></td>\n<td><p>The reason why the suggested topic is declined.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncommentinput\">\n      <a href=\"#deletediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node id of the discussion comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioninput\">\n      <a href=\"#deletediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironmentinput\">\n      <a href=\"#deleteenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteEnvironmentInput</h2>\n    <p>Autogenerated input type of DeleteEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the environment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversioninput\">\n      <a href=\"#deletepackageversioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePackageVersionInput</h2>\n    <p>Autogenerated input type of DeletePackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersionId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the package version to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectnextiteminput\">\n      <a href=\"#deleteprojectnextiteminput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectNextItemInput</h2>\n    <p>Autogenerated input type of DeleteProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the item to be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project from which the item should be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomaininput\">\n      <a href=\"#deleteverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteVerifiableDomainInput</h2>\n    <p>Autogenerated input type of DeleteVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionorder\">\n      <a href=\"#discussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionOrder</h2>\n    <p>Ways in which lists of discussions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order discussions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#discussionorderfield\">DiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalertinput\">\n      <a href=\"#dismissrepositoryvulnerabilityalertinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissRepositoryVulnerabilityAlertInput</h2>\n    <p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/graphql/reference/enums#dismissreason\">DismissReason!</a></code>)</p></td>\n<td><p>The reason the Dependabot alert is being dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlertId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Dependabot alert ID to dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationorder\">\n      <a href=\"#enterpriseserverinstallationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationOrder</h2>\n    <p>Ordering options for Enterprise Server installation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserverinstallationorderfield\">EnterpriseServerInstallationOrderField!</a></code>)</p></td>\n<td><p>The field to order Enterprise Server installations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fileaddition\">\n      <a href=\"#fileaddition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileAddition</h2>\n    <p>A command to add a file at the given path with the given contents as part of a\ncommit.  Any existing file at that that path will be replaced.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contents</code> (<code><a href=\"/en/graphql/reference/scalars#base64string\">Base64String!</a></code>)</p></td>\n<td><p>The base64 encoded contents of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the repository where the file will be located.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filechanges\">\n      <a href=\"#filechanges\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileChanges</h2>\n    <p>A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file <code>additions</code> and zero or more\nfile <code>deletions</code>.</p>\n<p>Both fields are optional; omitting both will produce a commit with no\nfile changes.</p>\n<p><code>deletions</code> and <code>additions</code> describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n<code>/</code>.  The root of a git tree is an empty string, so paths are not\nslash-prefixed.</p>\n<p><code>path</code> values must be unique across all <code>additions</code> and <code>deletions</code>\nprovided.  Any duplication will result in a validation error.</p>\n<h3 id=\"encoding\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#encoding\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Encoding</h3>\n<p>File contents must be provided in full for each <code>FileAddition</code>.</p>\n<p>The <code>contents</code> of a <code>FileAddition</code> must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used.  Invalid base64\nencoding will be rejected with a validation error.</p>\n<p>The encoded contents may be binary.</p>\n<p>For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding).  No charset transcoding or\nline-ending normalization will be performed; it is the client&apos;s\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (<code>\\n</code> or <code>\\r\\n</code>), and that all files end\nwith a newline.</p>\n<h3 id=\"modeling-file-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#modeling-file-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Modeling file changes</h3>\n<p>Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the <code>FileChanges</code> type as follows:</p>\n<ol>\n<li>\n<p>New file addition: create file <code>hello world\\n</code> at path <code>docs/README.txt</code>:</p>\n<p>   {\n&quot;additions&quot; [\n{\n&quot;path&quot;: &quot;docs/README.txt&quot;,\n&quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n}\n]\n}</p>\n</li>\n<li>\n<p>Existing file modification: change existing <code>docs/README.txt</code> to have new\ncontent <code>new content here\\n</code>:</p>\n<pre><code>{\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new content here\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>Existing file deletion: remove existing file <code>docs/README.txt</code>.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with no changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to the same content at\n<code>newdocs/README.txt</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to a file at path\n<code>newdocs/README.txt</code> with content <code>new contents\\n</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new contents\\n&quot;)\n    }\n  ]\n}.\n</code></pre>\n</li>\n</ol>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/graphql/reference/input-objects#fileaddition\">[FileAddition!]</a></code>)</p></td>\n<td><p>File to add or change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/graphql/reference/input-objects#filedeletion\">[FileDeletion!]</a></code>)</p></td>\n<td><p>Files to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filedeletion\">\n      <a href=\"#filedeletion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileDeletion</h2>\n    <p>A command to delete the file at the given path as part of a commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#grantenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantmigratorroleinput\">\n      <a href=\"#grantmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"inviteenterpriseadmininput\">\n      <a href=\"#inviteenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>InviteEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of InviteEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person to invite as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which you want to invite an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The login of a user to invite as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its database ID. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneNumber</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswerinput\">\n      <a href=\"#markdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of MarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to mark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenterpriseownerorder\">\n      <a href=\"#orgenterpriseownerorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnterpriseOwnerOrder</h2>\n    <p>Ordering options for an organization&apos;s enterprise owner connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#orgenterpriseownerorderfield\">OrgEnterpriseOwnerOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise owners by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileorder\">\n      <a href=\"#packagefileorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileOrder</h2>\n    <p>Ways in which lists of package files can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package files by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#packagefileorderfield\">PackageFileOrderField</a></code>)</p></td>\n<td><p>The field in which to order package files by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageorder\">\n      <a href=\"#packageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageOrder</h2>\n    <p>Ways in which lists of packages can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order packages by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#packageorderfield\">PackageOrderField</a></code>)</p></td>\n<td><p>The field in which to order packages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionorder\">\n      <a href=\"#packageversionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionOrder</h2>\n    <p>Ways in which lists of package versions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package versions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#packageversionorderfield\">PackageVersionOrderField</a></code>)</p></td>\n<td><p>The field in which to order package versions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateenterpriseidentityproviderrecoverycodesinput\">\n      <a href=\"#regenerateenterpriseidentityproviderrecoverycodesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateEnterpriseIdentityProviderRecoveryCodesInput</h2>\n    <p>Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set an identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintokeninput\">\n      <a href=\"#regenerateverifiabledomaintokeninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateVerifiableDomainTokenInput</h2>\n    <p>Autogenerated input type of RegenerateVerifiableDomainToken.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to regenerate the verification token of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeploymentsinput\">\n      <a href=\"#rejectdeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RejectDeploymentsInput</h2>\n    <p>Autogenerated input type of RejectDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for rejecting deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseidentityproviderinput\">\n      <a href=\"#removeenterpriseidentityproviderinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseIdentityProviderInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseIdentityProvider.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise from which to remove the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseorganizationinput\">\n      <a href=\"#removeenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise from which the organization should be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove from the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterprisesupportentitlementinput\">\n      <a href=\"#removeenterprisesupportentitlementinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseSupportEntitlementInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseSupportEntitlement.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a member who will lose the support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvoteinput\">\n      <a href=\"#removeupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveUpvoteInput</h2>\n    <p>Autogenerated input type of RemoveUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to remove upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationorder\">\n      <a href=\"#repositorymigrationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationOrder</h2>\n    <p>Ordering options for repository migrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#repositorymigrationorderdirection\">RepositoryMigrationOrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#repositorymigrationorderfield\">RepositoryMigrationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository migrations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckinput\">\n      <a href=\"#requiredstatuscheckinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckInput</h2>\n    <p>Specifies the attributes for a new or updated required status check.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse &quot;any&quot; to allow any app to set the status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Status check context that must pass for commits to be accepted to the matching branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokeenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#revokeenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to revoke the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokemigratorroleinput\">\n      <a href=\"#revokemigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to revoke the migrator role from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifierfilter\">\n      <a href=\"#securityadvisoryidentifierfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifierFilter</h2>\n    <p>An advisory identifier to filter results on.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryidentifiertype\">SecurityAdvisoryIdentifierType!</a></code>)</p></td>\n<td><p>The identifier type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier string. Supports exact or partial matching.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryorder\">\n      <a href=\"#securityadvisoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryOrder</h2>\n    <p>Ordering options for security advisory connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryorderfield\">SecurityAdvisoryOrderField!</a></code>)</p></td>\n<td><p>The field to order security advisories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityorder\">\n      <a href=\"#securityvulnerabilityorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityOrder</h2>\n    <p>Ordering options for security vulnerability connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#securityvulnerabilityorderfield\">SecurityVulnerabilityOrderField!</a></code>)</p></td>\n<td><p>The field to order security vulnerabilities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setenterpriseidentityproviderinput\">\n      <a href=\"#setenterpriseidentityproviderinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetEnterpriseIdentityProviderInput</h2>\n    <p>Autogenerated input type of SetEnterpriseIdentityProvider.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm!</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set an identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm!</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setorganizationinteractionlimitinput\">\n      <a href=\"#setorganizationinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetOrganizationInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetOrganizationInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setrepositoryinteractionlimitinput\">\n      <a href=\"#setrepositoryinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetRepositoryInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetRepositoryInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setuserinteractionlimitinput\">\n      <a href=\"#setuserinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetUserInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetUserInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the user to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsororder\">\n      <a href=\"#sponsororder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorOrder</h2>\n    <p>Ordering options for connections to get sponsor entities for GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsororderfield\">SponsorOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsor entities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableorder\">\n      <a href=\"#sponsorableorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableOrder</h2>\n    <p>Ordering options for connections to get sponsorable entities for GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorableorderfield\">SponsorableOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorable entities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityorder\">\n      <a href=\"#sponsorsactivityorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityOrder</h2>\n    <p>Ordering options for GitHub Sponsors activity connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsactivityorderfield\">SponsorsActivityOrderField!</a></code>)</p></td>\n<td><p>The field to order activity by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstierorder\">\n      <a href=\"#sponsorstierorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierOrder</h2>\n    <p>Ordering options for Sponsors tiers connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorstierorderfield\">SponsorsTierOrderField!</a></code>)</p></td>\n<td><p>The field to order tiers by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletterorder\">\n      <a href=\"#sponsorshipnewsletterorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterOrder</h2>\n    <p>Ordering options for sponsorship newsletter connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshipnewsletterorderfield\">SponsorshipNewsletterOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorship newsletters by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshiporder\">\n      <a href=\"#sponsorshiporder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipOrder</h2>\n    <p>Ordering options for sponsorship connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshiporderfield\">SponsorshipOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorship by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"startrepositorymigrationinput\">\n      <a href=\"#startrepositorymigrationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StartRepositoryMigrationInput</h2>\n    <p>Autogenerated input type of StartRepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to continue the migration on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitArchiveUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded git archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>metadataArchiveUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded metadata archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceRepositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source repository URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswerinput\">\n      <a href=\"#unmarkdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of UnmarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to unmark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncommentinput\">\n      <a href=\"#updatediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new contents of the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioninput\">\n      <a href=\"#updatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new contents of the discussion body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of a discussion category within the same repository to change this discussion to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new discussion title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseadministratorroleinput\">\n      <a href=\"#updateenterpriseadministratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAdministratorRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAdministratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a administrator whose role is being changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The new role for the Enterprise administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the base repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the base repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseownerorganizationroleinput\">\n      <a href=\"#updateenterpriseownerorganizationroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOwnerOrganizationRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the owner belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization for membership change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role to assume in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironmentinput\">\n      <a href=\"#updateenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnvironmentInput</h2>\n    <p>Autogenerated input type of UpdateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The ids of users or teams that can approve deployments to this environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The wait timer in minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsettinginput\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListForInstalledAppsEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list configuration for installed GitHub Apps setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsettinginput\">\n      <a href=\"#updatenotificationrestrictionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateNotificationRestrictionSettingInput</h2>\n    <p>Autogenerated input type of UpdateNotificationRestrictionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>The value for the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Enable forking of private repositories in the organization?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextinput\">\n      <a href=\"#updateprojectnextinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectNextInput</h2>\n    <p>Autogenerated input type of UpdateProjectNext.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Set the project to closed or open.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the readme description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Set the project to public or private.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the short description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the title of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextitemfieldinput\">\n      <a href=\"#updateprojectnextitemfieldinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectNextItemFieldInput</h2>\n    <p>Autogenerated input type of UpdateProjectNextItemField.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fieldId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the field to be updated. Only supports custom fields and status for now.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the item to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The value which will be set on the field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranchinput\">\n      <a href=\"#updatepullrequestbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestBranchInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The head ref oid for the upstream branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesponsorshippreferencesinput\">\n      <a href=\"#updatesponsorshippreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSponsorshipPreferencesInput</h2>\n    <p>Autogenerated input type of UpdateSponsorshipPreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy</a></code>)</p></td>\n<td><p>Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>receiveEmails</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsor should receive email updates from the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainorder\">\n      <a href=\"#verifiabledomainorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainOrder</h2>\n    <p>Ordering options for verifiable domain connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#verifiabledomainorderfield\">VerifiableDomainOrderField!</a></code>)</p></td>\n<td><p>The field to order verifiable domains by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomaininput\">\n      <a href=\"#verifyverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifyVerifiableDomainInput</h2>\n    <p>Autogenerated input type of VerifyVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to verify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
+    "html": "<div>\n  <div>\n    <h2 id=\"abortqueuedmigrationsinput\">\n      <a href=\"#abortqueuedmigrationsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AbortQueuedMigrationsInput</h2>\n    <p>Autogenerated input type of AbortQueuedMigrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that is running the migrations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"acceptenterpriseadministratorinvitationinput\">\n      <a href=\"#acceptenterpriseadministratorinvitationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AcceptEnterpriseAdministratorInvitationInput</h2>\n    <p>Autogenerated input type of AcceptEnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the invitation being accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"accepttopicsuggestioninput\">\n      <a href=\"#accepttopicsuggestioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AcceptTopicSuggestionInput</h2>\n    <p>Autogenerated input type of AcceptTopicSuggestion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the suggested topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncommentinput\">\n      <a href=\"#adddiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddDiscussionCommentInput</h2>\n    <p>Autogenerated input type of AddDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyToId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment within this discussion to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterprisesupportentitlementinput\">\n      <a href=\"#addenterprisesupportentitlementinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseSupportEntitlementInput</h2>\n    <p>Autogenerated input type of AddEnterpriseSupportEntitlement.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a member who will receive the support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectnextiteminput\">\n      <a href=\"#addprojectnextiteminput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectNextItemInput</h2>\n    <p>Autogenerated input type of AddProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The content id of the item (Issue or PullRequest).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to add the item to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvoteinput\">\n      <a href=\"#addupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddUpvoteInput</h2>\n    <p>Autogenerated input type of AddUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomaininput\">\n      <a href=\"#addverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddVerifiableDomainInput</h2>\n    <p>Autogenerated input type of AddVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner to add the domain to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeploymentsinput\">\n      <a href=\"#approvedeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveDeploymentsInput</h2>\n    <p>Autogenerated input type of ApproveDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for approving deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomaininput\">\n      <a href=\"#approveverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveVerifiableDomainInput</h2>\n    <p>Autogenerated input type of ApproveVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to approve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelenterpriseadmininvitationinput\">\n      <a href=\"#cancelenterpriseadmininvitationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CancelEnterpriseAdminInvitationInput</h2>\n    <p>Autogenerated input type of CancelEnterpriseAdminInvitation.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pending enterprise administrator invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelsponsorshipinput\">\n      <a href=\"#cancelsponsorshipinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CancelSponsorshipInput</h2>\n    <p>Autogenerated input type of CancelSponsorship.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitmessage\">\n      <a href=\"#commitmessage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitMessage</h2>\n    <p>A message to include with a new commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The headline of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"committablebranch\">\n      <a href=\"#committablebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommittableBranch</h2>\n    <p>A git ref for a commit to be appended to.</p>\n<p>The ref must be a branch, i.e. its fully qualified name must start\nwith <code>refs/heads/</code> (although the input is not required to be fully\nqualified).</p>\n<p>The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.</p>\n<h3 id=\"examples\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#examples\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Examples</h3>\n<p>Specify a branch using a global node ID:</p>\n<pre><code>{ &quot;id&quot;: &quot;MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=&quot; }\n</code></pre>\n<p>Specify a branch using nameWithOwner and branch name:</p>\n<pre><code>{\n  &quot;nameWithOwner&quot;: &quot;github/graphql-client&quot;,\n  &quot;branchName&quot;: &quot;main&quot;\n}.\n</code></pre>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The unqualified name of the branch to append the commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryNameWithOwner</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The nameWithOwner of the repository to commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraftinput\">\n      <a href=\"#convertpullrequesttodraftinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertPullRequestToDraftInput</h2>\n    <p>Autogenerated input type of ConvertPullRequestToDraft.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to convert to draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranchinput\">\n      <a href=\"#createcommitonbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCommitOnBranchInput</h2>\n    <p>Autogenerated input type of CreateCommitOnBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/graphql/reference/input-objects#committablebranch\">CommittableBranch!</a></code>)</p></td>\n<td><p>The Ref to be updated.  Must be a branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The git commit oid expected at the head of the branch prior to the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fileChanges</code> (<code><a href=\"/en/graphql/reference/input-objects#filechanges\">FileChanges</a></code>)</p></td>\n<td><p>A description of changes to files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/input-objects#commitmessage\">CommitMessage!</a></code>)</p></td>\n<td><p>The commit message the be included with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussioninput\">\n      <a href=\"#creatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDiscussionInput</h2>\n    <p>Autogenerated input type of CreateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion category to associate with this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the repository on which to create the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironmentinput\">\n      <a href=\"#createenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnvironmentInput</h2>\n    <p>Autogenerated input type of CreateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createmigrationsourceinput\">\n      <a href=\"#createmigrationsourceinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateMigrationSourceInput</h2>\n    <p>Autogenerated input type of CreateMigrationSource.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessToken</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source access token.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>githubPat</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The GitHub personal access token of the user importing to the target repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createsponsorshipinput\">\n      <a href=\"#createsponsorshipinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateSponsorshipInput</h2>\n    <p>Autogenerated input type of CreateSponsorship.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>amount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRecurring</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy</a></code>)</p></td>\n<td><p>Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>receiveEmails</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsor should receive email updates from the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tierId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of one of sponsorable&apos;s existing tiers to sponsor at. Required if amount is not specified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"declinetopicsuggestioninput\">\n      <a href=\"#declinetopicsuggestioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeclineTopicSuggestionInput</h2>\n    <p>Autogenerated input type of DeclineTopicSuggestion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the suggested topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/enums#topicsuggestiondeclinereason\">TopicSuggestionDeclineReason!</a></code>)</p></td>\n<td><p>The reason why the suggested topic is declined.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncommentinput\">\n      <a href=\"#deletediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node id of the discussion comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioninput\">\n      <a href=\"#deletediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironmentinput\">\n      <a href=\"#deleteenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteEnvironmentInput</h2>\n    <p>Autogenerated input type of DeleteEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the environment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversioninput\">\n      <a href=\"#deletepackageversioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePackageVersionInput</h2>\n    <p>Autogenerated input type of DeletePackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersionId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the package version to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectnextiteminput\">\n      <a href=\"#deleteprojectnextiteminput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectNextItemInput</h2>\n    <p>Autogenerated input type of DeleteProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the item to be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project from which the item should be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomaininput\">\n      <a href=\"#deleteverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteVerifiableDomainInput</h2>\n    <p>Autogenerated input type of DeleteVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionorder\">\n      <a href=\"#discussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionOrder</h2>\n    <p>Ways in which lists of discussions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order discussions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#discussionorderfield\">DiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalertinput\">\n      <a href=\"#dismissrepositoryvulnerabilityalertinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissRepositoryVulnerabilityAlertInput</h2>\n    <p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/graphql/reference/enums#dismissreason\">DismissReason!</a></code>)</p></td>\n<td><p>The reason the Dependabot alert is being dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlertId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Dependabot alert ID to dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationorder\">\n      <a href=\"#enterpriseserverinstallationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationOrder</h2>\n    <p>Ordering options for Enterprise Server installation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserverinstallationorderfield\">EnterpriseServerInstallationOrderField!</a></code>)</p></td>\n<td><p>The field to order Enterprise Server installations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fileaddition\">\n      <a href=\"#fileaddition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileAddition</h2>\n    <p>A command to add a file at the given path with the given contents as part of a\ncommit.  Any existing file at that that path will be replaced.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contents</code> (<code><a href=\"/en/graphql/reference/scalars#base64string\">Base64String!</a></code>)</p></td>\n<td><p>The base64 encoded contents of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the repository where the file will be located.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filechanges\">\n      <a href=\"#filechanges\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileChanges</h2>\n    <p>A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file <code>additions</code> and zero or more\nfile <code>deletions</code>.</p>\n<p>Both fields are optional; omitting both will produce a commit with no\nfile changes.</p>\n<p><code>deletions</code> and <code>additions</code> describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n<code>/</code>.  The root of a git tree is an empty string, so paths are not\nslash-prefixed.</p>\n<p><code>path</code> values must be unique across all <code>additions</code> and <code>deletions</code>\nprovided.  Any duplication will result in a validation error.</p>\n<h3 id=\"encoding\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#encoding\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Encoding</h3>\n<p>File contents must be provided in full for each <code>FileAddition</code>.</p>\n<p>The <code>contents</code> of a <code>FileAddition</code> must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used.  Invalid base64\nencoding will be rejected with a validation error.</p>\n<p>The encoded contents may be binary.</p>\n<p>For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding).  No charset transcoding or\nline-ending normalization will be performed; it is the client&apos;s\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (<code>\\n</code> or <code>\\r\\n</code>), and that all files end\nwith a newline.</p>\n<h3 id=\"modeling-file-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#modeling-file-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Modeling file changes</h3>\n<p>Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the <code>FileChanges</code> type as follows:</p>\n<ol>\n<li>\n<p>New file addition: create file <code>hello world\\n</code> at path <code>docs/README.txt</code>:</p>\n<p>   {\n&quot;additions&quot; [\n{\n&quot;path&quot;: &quot;docs/README.txt&quot;,\n&quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n}\n]\n}</p>\n</li>\n<li>\n<p>Existing file modification: change existing <code>docs/README.txt</code> to have new\ncontent <code>new content here\\n</code>:</p>\n<pre><code>{\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new content here\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>Existing file deletion: remove existing file <code>docs/README.txt</code>.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with no changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to the same content at\n<code>newdocs/README.txt</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to a file at path\n<code>newdocs/README.txt</code> with content <code>new contents\\n</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new contents\\n&quot;)\n    }\n  ]\n}.\n</code></pre>\n</li>\n</ol>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/graphql/reference/input-objects#fileaddition\">[FileAddition!]</a></code>)</p></td>\n<td><p>File to add or change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/graphql/reference/input-objects#filedeletion\">[FileDeletion!]</a></code>)</p></td>\n<td><p>Files to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filedeletion\">\n      <a href=\"#filedeletion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileDeletion</h2>\n    <p>A command to delete the file at the given path as part of a commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#grantenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantmigratorroleinput\">\n      <a href=\"#grantmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"inviteenterpriseadmininput\">\n      <a href=\"#inviteenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>InviteEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of InviteEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person to invite as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which you want to invite an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The login of a user to invite as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its database ID. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneNumber</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswerinput\">\n      <a href=\"#markdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of MarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to mark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenterpriseownerorder\">\n      <a href=\"#orgenterpriseownerorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnterpriseOwnerOrder</h2>\n    <p>Ordering options for an organization&apos;s enterprise owner connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#orgenterpriseownerorderfield\">OrgEnterpriseOwnerOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise owners by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileorder\">\n      <a href=\"#packagefileorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileOrder</h2>\n    <p>Ways in which lists of package files can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package files by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#packagefileorderfield\">PackageFileOrderField</a></code>)</p></td>\n<td><p>The field in which to order package files by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageorder\">\n      <a href=\"#packageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageOrder</h2>\n    <p>Ways in which lists of packages can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order packages by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#packageorderfield\">PackageOrderField</a></code>)</p></td>\n<td><p>The field in which to order packages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionorder\">\n      <a href=\"#packageversionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionOrder</h2>\n    <p>Ways in which lists of package versions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package versions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#packageversionorderfield\">PackageVersionOrderField</a></code>)</p></td>\n<td><p>The field in which to order package versions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateenterpriseidentityproviderrecoverycodesinput\">\n      <a href=\"#regenerateenterpriseidentityproviderrecoverycodesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateEnterpriseIdentityProviderRecoveryCodesInput</h2>\n    <p>Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set an identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintokeninput\">\n      <a href=\"#regenerateverifiabledomaintokeninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateVerifiableDomainTokenInput</h2>\n    <p>Autogenerated input type of RegenerateVerifiableDomainToken.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to regenerate the verification token of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeploymentsinput\">\n      <a href=\"#rejectdeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RejectDeploymentsInput</h2>\n    <p>Autogenerated input type of RejectDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for rejecting deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseidentityproviderinput\">\n      <a href=\"#removeenterpriseidentityproviderinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseIdentityProviderInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseIdentityProvider.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise from which to remove the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseorganizationinput\">\n      <a href=\"#removeenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise from which the organization should be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove from the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterprisesupportentitlementinput\">\n      <a href=\"#removeenterprisesupportentitlementinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseSupportEntitlementInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseSupportEntitlement.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a member who will lose the support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvoteinput\">\n      <a href=\"#removeupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveUpvoteInput</h2>\n    <p>Autogenerated input type of RemoveUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to remove upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationorder\">\n      <a href=\"#repositorymigrationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationOrder</h2>\n    <p>Ordering options for repository migrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#repositorymigrationorderdirection\">RepositoryMigrationOrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#repositorymigrationorderfield\">RepositoryMigrationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository migrations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckinput\">\n      <a href=\"#requiredstatuscheckinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckInput</h2>\n    <p>Specifies the attributes for a new or updated required status check.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse &quot;any&quot; to allow any app to set the status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Status check context that must pass for commits to be accepted to the matching branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokeenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#revokeenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to revoke the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokemigratorroleinput\">\n      <a href=\"#revokemigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to revoke the migrator role from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifierfilter\">\n      <a href=\"#securityadvisoryidentifierfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifierFilter</h2>\n    <p>An advisory identifier to filter results on.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryidentifiertype\">SecurityAdvisoryIdentifierType!</a></code>)</p></td>\n<td><p>The identifier type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier string. Supports exact or partial matching.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryorder\">\n      <a href=\"#securityadvisoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryOrder</h2>\n    <p>Ordering options for security advisory connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryorderfield\">SecurityAdvisoryOrderField!</a></code>)</p></td>\n<td><p>The field to order security advisories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityorder\">\n      <a href=\"#securityvulnerabilityorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityOrder</h2>\n    <p>Ordering options for security vulnerability connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#securityvulnerabilityorderfield\">SecurityVulnerabilityOrderField!</a></code>)</p></td>\n<td><p>The field to order security vulnerabilities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setenterpriseidentityproviderinput\">\n      <a href=\"#setenterpriseidentityproviderinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetEnterpriseIdentityProviderInput</h2>\n    <p>Autogenerated input type of SetEnterpriseIdentityProvider.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm!</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set an identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm!</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setorganizationinteractionlimitinput\">\n      <a href=\"#setorganizationinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetOrganizationInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetOrganizationInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setrepositoryinteractionlimitinput\">\n      <a href=\"#setrepositoryinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetRepositoryInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetRepositoryInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setuserinteractionlimitinput\">\n      <a href=\"#setuserinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetUserInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetUserInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the user to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsororder\">\n      <a href=\"#sponsororder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorOrder</h2>\n    <p>Ordering options for connections to get sponsor entities for GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsororderfield\">SponsorOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsor entities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableorder\">\n      <a href=\"#sponsorableorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableOrder</h2>\n    <p>Ordering options for connections to get sponsorable entities for GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorableorderfield\">SponsorableOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorable entities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityorder\">\n      <a href=\"#sponsorsactivityorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityOrder</h2>\n    <p>Ordering options for GitHub Sponsors activity connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsactivityorderfield\">SponsorsActivityOrderField!</a></code>)</p></td>\n<td><p>The field to order activity by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstierorder\">\n      <a href=\"#sponsorstierorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierOrder</h2>\n    <p>Ordering options for Sponsors tiers connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorstierorderfield\">SponsorsTierOrderField!</a></code>)</p></td>\n<td><p>The field to order tiers by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletterorder\">\n      <a href=\"#sponsorshipnewsletterorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterOrder</h2>\n    <p>Ordering options for sponsorship newsletter connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshipnewsletterorderfield\">SponsorshipNewsletterOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorship newsletters by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshiporder\">\n      <a href=\"#sponsorshiporder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipOrder</h2>\n    <p>Ordering options for sponsorship connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshiporderfield\">SponsorshipOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorship by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"startrepositorymigrationinput\">\n      <a href=\"#startrepositorymigrationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StartRepositoryMigrationInput</h2>\n    <p>Autogenerated input type of StartRepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessToken</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Octoshift migration source access token.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to continue the migration on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitArchiveUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded git archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>githubPat</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The GitHub personal access token of the user importing to the target repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>metadataArchiveUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded metadata archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceRepositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source repository URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswerinput\">\n      <a href=\"#unmarkdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of UnmarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to unmark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncommentinput\">\n      <a href=\"#updatediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new contents of the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioninput\">\n      <a href=\"#updatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new contents of the discussion body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of a discussion category within the same repository to change this discussion to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new discussion title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseadministratorroleinput\">\n      <a href=\"#updateenterpriseadministratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAdministratorRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAdministratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a administrator whose role is being changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The new role for the Enterprise administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the base repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the base repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseownerorganizationroleinput\">\n      <a href=\"#updateenterpriseownerorganizationroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOwnerOrganizationRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the owner belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization for membership change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role to assume in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironmentinput\">\n      <a href=\"#updateenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnvironmentInput</h2>\n    <p>Autogenerated input type of UpdateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The ids of users or teams that can approve deployments to this environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The wait timer in minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsettinginput\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListForInstalledAppsEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list configuration for installed GitHub Apps setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsettinginput\">\n      <a href=\"#updatenotificationrestrictionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateNotificationRestrictionSettingInput</h2>\n    <p>Autogenerated input type of UpdateNotificationRestrictionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>The value for the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Enable forking of private repositories in the organization?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextinput\">\n      <a href=\"#updateprojectnextinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectNextInput</h2>\n    <p>Autogenerated input type of UpdateProjectNext.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Set the project to closed or open.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the readme description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Set the project to public or private.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the short description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the title of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextitemfieldinput\">\n      <a href=\"#updateprojectnextitemfieldinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectNextItemFieldInput</h2>\n    <p>Autogenerated input type of UpdateProjectNextItemField.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fieldId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the field to be updated. Only supports custom fields and status for now.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the item to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The value which will be set on the field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranchinput\">\n      <a href=\"#updatepullrequestbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestBranchInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The head ref oid for the upstream branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesponsorshippreferencesinput\">\n      <a href=\"#updatesponsorshippreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSponsorshipPreferencesInput</h2>\n    <p>Autogenerated input type of UpdateSponsorshipPreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy</a></code>)</p></td>\n<td><p>Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>receiveEmails</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsor should receive email updates from the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainorder\">\n      <a href=\"#verifiabledomainorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainOrder</h2>\n    <p>Ordering options for verifiable domain connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/graphql/reference/enums#verifiabledomainorderfield\">VerifiableDomainOrderField!</a></code>)</p></td>\n<td><p>The field to order verifiable domains by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomaininput\">\n      <a href=\"#verifyverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifyVerifiableDomainInput</h2>\n    <p>Autogenerated input type of VerifyVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to verify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#abortqueuedmigrationsinput\">\n      AbortQueuedMigrationsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#abortqueuedmigrationsinput\">\n      AbortQueuedMigrationsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#acceptenterpriseadministratorinvitationinput\">\n      AcceptEnterpriseAdministratorInvitationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#acceptenterpriseadministratorinvitationinput\">\n      AcceptEnterpriseAdministratorInvitationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#accepttopicsuggestioninput\">\n      AcceptTopicSuggestionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#accepttopicsuggestioninput\">\n      AcceptTopicSuggestionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterprisesupportentitlementinput\">\n      AddEnterpriseSupportEntitlementInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterprisesupportentitlementinput\">\n      AddEnterpriseSupportEntitlementInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectnextiteminput\">\n      AddProjectNextItemInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectnextiteminput\">\n      AddProjectNextItemInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstarinput\">\n      AddStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstarinput\">\n      AddStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cancelenterpriseadmininvitationinput\">\n      CancelEnterpriseAdminInvitationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cancelenterpriseadmininvitationinput\">\n      CancelEnterpriseAdminInvitationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cancelsponsorshipinput\">\n      CancelSponsorshipInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cancelsponsorshipinput\">\n      CancelSponsorshipInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitauthor\">\n      CommitAuthor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitauthor\">\n      CommitAuthor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitmessage\">\n      CommitMessage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitmessage\">\n      CommitMessage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#committablebranch\">\n      CommittableBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#committablebranch\">\n      CommittableBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionorder\">\n      ContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionorder\">\n      ContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createmigrationsourceinput\">\n      CreateMigrationSourceInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createmigrationsourceinput\">\n      CreateMigrationSourceInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrefinput\">\n      CreateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrefinput\">\n      CreateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createsponsorshipinput\">\n      CreateSponsorshipInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createsponsorshipinput\">\n      CreateSponsorshipInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#declinetopicsuggestioninput\">\n      DeclineTopicSuggestionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#declinetopicsuggestioninput\">\n      DeclineTopicSuggestionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectnextiteminput\">\n      DeleteProjectNextItemInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectnextiteminput\">\n      DeleteProjectNextItemInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismissrepositoryvulnerabilityalertinput\">\n      DismissRepositoryVulnerabilityAlertInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismissrepositoryvulnerabilityalertinput\">\n      DismissRepositoryVulnerabilityAlertInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallationorder\">\n      EnterpriseServerInstallationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallationorder\">\n      EnterpriseServerInstallationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#fileaddition\">\n      FileAddition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#fileaddition\">\n      FileAddition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filechanges\">\n      FileChanges</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filechanges\">\n      FileChanges</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filedeletion\">\n      FileDeletion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filedeletion\">\n      FileDeletion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuserinput\">\n      FollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuserinput\">\n      FollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistorder\">\n      GistOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistorder\">\n      GistOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantenterpriseorganizationsmigratorroleinput\">\n      GrantEnterpriseOrganizationsMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantenterpriseorganizationsmigratorroleinput\">\n      GrantEnterpriseOrganizationsMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantmigratorroleinput\">\n      GrantMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantmigratorroleinput\">\n      GrantMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#inviteenterpriseadmininput\">\n      InviteEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#inviteenterpriseadmininput\">\n      InviteEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuefilters\">\n      IssueFilters</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuefilters\">\n      IssueFilters</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueorder\">\n      IssueOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueorder\">\n      IssueOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelorder\">\n      LabelOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelorder\">\n      LabelOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageorder\">\n      LanguageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageorder\">\n      LanguageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenterpriseownerorder\">\n      OrgEnterpriseOwnerOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenterpriseownerorder\">\n      OrgEnterpriseOwnerOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageorder\">\n      PackageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageorder\">\n      PackageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectorder\">\n      ProjectOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectorder\">\n      ProjectOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionorder\">\n      ReactionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionorder\">\n      ReactionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reforder\">\n      RefOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reforder\">\n      RefOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdate\">\n      RefUpdate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdate\">\n      RefUpdate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateenterpriseidentityproviderrecoverycodesinput\">\n      RegenerateEnterpriseIdentityProviderRecoveryCodesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateenterpriseidentityproviderrecoverycodesinput\">\n      RegenerateEnterpriseIdentityProviderRecoveryCodesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseidentityproviderinput\">\n      RemoveEnterpriseIdentityProviderInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseidentityproviderinput\">\n      RemoveEnterpriseIdentityProviderInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseorganizationinput\">\n      RemoveEnterpriseOrganizationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseorganizationinput\">\n      RemoveEnterpriseOrganizationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterprisesupportentitlementinput\">\n      RemoveEnterpriseSupportEntitlementInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterprisesupportentitlementinput\">\n      RemoveEnterpriseSupportEntitlementInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigrationorder\">\n      RepositoryMigrationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigrationorder\">\n      RepositoryMigrationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requiredstatuscheckinput\">\n      RequiredStatusCheckInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requiredstatuscheckinput\">\n      RequiredStatusCheckInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokeenterpriseorganizationsmigratorroleinput\">\n      RevokeEnterpriseOrganizationsMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokeenterpriseorganizationsmigratorroleinput\">\n      RevokeEnterpriseOrganizationsMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokemigratorroleinput\">\n      RevokeMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokemigratorroleinput\">\n      RevokeMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifierfilter\">\n      SecurityAdvisoryIdentifierFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifierfilter\">\n      SecurityAdvisoryIdentifierFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryorder\">\n      SecurityAdvisoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryorder\">\n      SecurityAdvisoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityorder\">\n      SecurityVulnerabilityOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityorder\">\n      SecurityVulnerabilityOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setenterpriseidentityproviderinput\">\n      SetEnterpriseIdentityProviderInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setenterpriseidentityproviderinput\">\n      SetEnterpriseIdentityProviderInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setorganizationinteractionlimitinput\">\n      SetOrganizationInteractionLimitInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setorganizationinteractionlimitinput\">\n      SetOrganizationInteractionLimitInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setrepositoryinteractionlimitinput\">\n      SetRepositoryInteractionLimitInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setrepositoryinteractionlimitinput\">\n      SetRepositoryInteractionLimitInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setuserinteractionlimitinput\">\n      SetUserInteractionLimitInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setuserinteractionlimitinput\">\n      SetUserInteractionLimitInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsororder\">\n      SponsorOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsororder\">\n      SponsorOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorableorder\">\n      SponsorableOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorableorder\">\n      SponsorableOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsactivityorder\">\n      SponsorsActivityOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsactivityorder\">\n      SponsorsActivityOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstierorder\">\n      SponsorsTierOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstierorder\">\n      SponsorsTierOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipnewsletterorder\">\n      SponsorshipNewsletterOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipnewsletterorder\">\n      SponsorshipNewsletterOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starorder\">\n      StarOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starorder\">\n      StarOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#startrepositorymigrationinput\">\n      StartRepositoryMigrationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#startrepositorymigrationinput\">\n      StartRepositoryMigrationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamorder\">\n      TeamOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamorder\">\n      TeamOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseadministratorroleinput\">\n      UpdateEnterpriseAdministratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseadministratorroleinput\">\n      UpdateEnterpriseAdministratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseownerorganizationroleinput\">\n      UpdateEnterpriseOwnerOrganizationRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseownerorganizationroleinput\">\n      UpdateEnterpriseOwnerOrganizationRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\">\n      UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\">\n      UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectnextinput\">\n      UpdateProjectNextInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectnextinput\">\n      UpdateProjectNextInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectnextitemfieldinput\">\n      UpdateProjectNextItemFieldInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectnextitemfieldinput\">\n      UpdateProjectNextItemFieldInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestbranchinput\">\n      UpdatePullRequestBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestbranchinput\">\n      UpdatePullRequestBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesponsorshippreferencesinput\">\n      UpdateSponsorshipPreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesponsorshippreferencesinput\">\n      UpdateSponsorshipPreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -1748,1746 +1748,1746 @@
     ]
   },
   "ghec": {
-    "html": "<div>\n  <div>\n    <h2 id=\"abortqueuedmigrationsinput\">\n      <a href=\"#abortqueuedmigrationsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AbortQueuedMigrationsInput</h2>\n    <p>Autogenerated input type of AbortQueuedMigrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that is running the migrations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"acceptenterpriseadministratorinvitationinput\">\n      <a href=\"#acceptenterpriseadministratorinvitationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AcceptEnterpriseAdministratorInvitationInput</h2>\n    <p>Autogenerated input type of AcceptEnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the invitation being accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"accepttopicsuggestioninput\">\n      <a href=\"#accepttopicsuggestioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AcceptTopicSuggestionInput</h2>\n    <p>Autogenerated input type of AcceptTopicSuggestion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the suggested topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncommentinput\">\n      <a href=\"#adddiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddDiscussionCommentInput</h2>\n    <p>Autogenerated input type of AddDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyToId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment within this discussion to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterprisesupportentitlementinput\">\n      <a href=\"#addenterprisesupportentitlementinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseSupportEntitlementInput</h2>\n    <p>Autogenerated input type of AddEnterpriseSupportEntitlement.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a member who will receive the support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectnextiteminput\">\n      <a href=\"#addprojectnextiteminput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectNextItemInput</h2>\n    <p>Autogenerated input type of AddProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The content id of the item (Issue or PullRequest).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to add the item to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvoteinput\">\n      <a href=\"#addupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddUpvoteInput</h2>\n    <p>Autogenerated input type of AddUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomaininput\">\n      <a href=\"#addverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddVerifiableDomainInput</h2>\n    <p>Autogenerated input type of AddVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner to add the domain to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeploymentsinput\">\n      <a href=\"#approvedeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveDeploymentsInput</h2>\n    <p>Autogenerated input type of ApproveDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for approving deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomaininput\">\n      <a href=\"#approveverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveVerifiableDomainInput</h2>\n    <p>Autogenerated input type of ApproveVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to approve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelenterpriseadmininvitationinput\">\n      <a href=\"#cancelenterpriseadmininvitationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CancelEnterpriseAdminInvitationInput</h2>\n    <p>Autogenerated input type of CancelEnterpriseAdminInvitation.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pending enterprise administrator invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelsponsorshipinput\">\n      <a href=\"#cancelsponsorshipinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CancelSponsorshipInput</h2>\n    <p>Autogenerated input type of CancelSponsorship.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitmessage\">\n      <a href=\"#commitmessage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitMessage</h2>\n    <p>A message to include with a new commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The headline of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"committablebranch\">\n      <a href=\"#committablebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommittableBranch</h2>\n    <p>A git ref for a commit to be appended to.</p>\n<p>The ref must be a branch, i.e. its fully qualified name must start\nwith <code>refs/heads/</code> (although the input is not required to be fully\nqualified).</p>\n<p>The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.</p>\n<h3 id=\"examples\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#examples\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Examples</h3>\n<p>Specify a branch using a global node ID:</p>\n<pre><code>{ &quot;id&quot;: &quot;MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=&quot; }\n</code></pre>\n<p>Specify a branch using nameWithOwner and branch name:</p>\n<pre><code>{\n  &quot;nameWithOwner&quot;: &quot;github/graphql-client&quot;,\n  &quot;branchName&quot;: &quot;main&quot;\n}.\n</code></pre>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The unqualified name of the branch to append the commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryNameWithOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The nameWithOwner of the repository to commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraftinput\">\n      <a href=\"#convertpullrequesttodraftinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertPullRequestToDraftInput</h2>\n    <p>Autogenerated input type of ConvertPullRequestToDraft.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to convert to draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranchinput\">\n      <a href=\"#createcommitonbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCommitOnBranchInput</h2>\n    <p>Autogenerated input type of CreateCommitOnBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#committablebranch\">CommittableBranch!</a></code>)</p></td>\n<td><p>The Ref to be updated.  Must be a branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The git commit oid expected at the head of the branch prior to the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fileChanges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#filechanges\">FileChanges</a></code>)</p></td>\n<td><p>A description of changes to files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#commitmessage\">CommitMessage!</a></code>)</p></td>\n<td><p>The commit message the be included with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussioninput\">\n      <a href=\"#creatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDiscussionInput</h2>\n    <p>Autogenerated input type of CreateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion category to associate with this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the repository on which to create the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironmentinput\">\n      <a href=\"#createenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnvironmentInput</h2>\n    <p>Autogenerated input type of CreateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createmigrationsourceinput\">\n      <a href=\"#createmigrationsourceinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateMigrationSourceInput</h2>\n    <p>Autogenerated input type of CreateMigrationSource.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source access token.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>githubPat</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The GitHub personal access token of the user importing to the target repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createsponsorshipinput\">\n      <a href=\"#createsponsorshipinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateSponsorshipInput</h2>\n    <p>Autogenerated input type of CreateSponsorship.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>amount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRecurring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy</a></code>)</p></td>\n<td><p>Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>receiveEmails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsor should receive email updates from the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tierId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of one of sponsorable&apos;s existing tiers to sponsor at. Required if amount is not specified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"declinetopicsuggestioninput\">\n      <a href=\"#declinetopicsuggestioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeclineTopicSuggestionInput</h2>\n    <p>Autogenerated input type of DeclineTopicSuggestion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the suggested topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#topicsuggestiondeclinereason\">TopicSuggestionDeclineReason!</a></code>)</p></td>\n<td><p>The reason why the suggested topic is declined.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncommentinput\">\n      <a href=\"#deletediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node id of the discussion comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioninput\">\n      <a href=\"#deletediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironmentinput\">\n      <a href=\"#deleteenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteEnvironmentInput</h2>\n    <p>Autogenerated input type of DeleteEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the environment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversioninput\">\n      <a href=\"#deletepackageversioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePackageVersionInput</h2>\n    <p>Autogenerated input type of DeletePackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersionId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the package version to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectnextiteminput\">\n      <a href=\"#deleteprojectnextiteminput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectNextItemInput</h2>\n    <p>Autogenerated input type of DeleteProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the item to be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project from which the item should be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomaininput\">\n      <a href=\"#deleteverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteVerifiableDomainInput</h2>\n    <p>Autogenerated input type of DeleteVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionorder\">\n      <a href=\"#discussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionOrder</h2>\n    <p>Ways in which lists of discussions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order discussions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#discussionorderfield\">DiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalertinput\">\n      <a href=\"#dismissrepositoryvulnerabilityalertinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissRepositoryVulnerabilityAlertInput</h2>\n    <p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#dismissreason\">DismissReason!</a></code>)</p></td>\n<td><p>The reason the Dependabot alert is being dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlertId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Dependabot alert ID to dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationorder\">\n      <a href=\"#enterpriseserverinstallationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationOrder</h2>\n    <p>Ordering options for Enterprise Server installation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserverinstallationorderfield\">EnterpriseServerInstallationOrderField!</a></code>)</p></td>\n<td><p>The field to order Enterprise Server installations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fileaddition\">\n      <a href=\"#fileaddition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileAddition</h2>\n    <p>A command to add a file at the given path with the given contents as part of a\ncommit.  Any existing file at that that path will be replaced.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#base64string\">Base64String!</a></code>)</p></td>\n<td><p>The base64 encoded contents of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the repository where the file will be located.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filechanges\">\n      <a href=\"#filechanges\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileChanges</h2>\n    <p>A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file <code>additions</code> and zero or more\nfile <code>deletions</code>.</p>\n<p>Both fields are optional; omitting both will produce a commit with no\nfile changes.</p>\n<p><code>deletions</code> and <code>additions</code> describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n<code>/</code>.  The root of a git tree is an empty string, so paths are not\nslash-prefixed.</p>\n<p><code>path</code> values must be unique across all <code>additions</code> and <code>deletions</code>\nprovided.  Any duplication will result in a validation error.</p>\n<h3 id=\"encoding\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#encoding\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Encoding</h3>\n<p>File contents must be provided in full for each <code>FileAddition</code>.</p>\n<p>The <code>contents</code> of a <code>FileAddition</code> must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used.  Invalid base64\nencoding will be rejected with a validation error.</p>\n<p>The encoded contents may be binary.</p>\n<p>For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding).  No charset transcoding or\nline-ending normalization will be performed; it is the client&apos;s\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (<code>\\n</code> or <code>\\r\\n</code>), and that all files end\nwith a newline.</p>\n<h3 id=\"modeling-file-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#modeling-file-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Modeling file changes</h3>\n<p>Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the <code>FileChanges</code> type as follows:</p>\n<ol>\n<li>\n<p>New file addition: create file <code>hello world\\n</code> at path <code>docs/README.txt</code>:</p>\n<p>   {\n&quot;additions&quot; [\n{\n&quot;path&quot;: &quot;docs/README.txt&quot;,\n&quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n}\n]\n}</p>\n</li>\n<li>\n<p>Existing file modification: change existing <code>docs/README.txt</code> to have new\ncontent <code>new content here\\n</code>:</p>\n<pre><code>{\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new content here\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>Existing file deletion: remove existing file <code>docs/README.txt</code>.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with no changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to the same content at\n<code>newdocs/README.txt</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to a file at path\n<code>newdocs/README.txt</code> with content <code>new contents\\n</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new contents\\n&quot;)\n    }\n  ]\n}.\n</code></pre>\n</li>\n</ol>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#fileaddition\">[FileAddition!]</a></code>)</p></td>\n<td><p>File to add or change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#filedeletion\">[FileDeletion!]</a></code>)</p></td>\n<td><p>Files to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filedeletion\">\n      <a href=\"#filedeletion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileDeletion</h2>\n    <p>A command to delete the file at the given path as part of a commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#grantenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantmigratorroleinput\">\n      <a href=\"#grantmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"inviteenterpriseadmininput\">\n      <a href=\"#inviteenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>InviteEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of InviteEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person to invite as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which you want to invite an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The login of a user to invite as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its database ID. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneNumber</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswerinput\">\n      <a href=\"#markdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of MarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to mark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenterpriseownerorder\">\n      <a href=\"#orgenterpriseownerorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnterpriseOwnerOrder</h2>\n    <p>Ordering options for an organization&apos;s enterprise owner connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgenterpriseownerorderfield\">OrgEnterpriseOwnerOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise owners by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileorder\">\n      <a href=\"#packagefileorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileOrder</h2>\n    <p>Ways in which lists of package files can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package files by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagefileorderfield\">PackageFileOrderField</a></code>)</p></td>\n<td><p>The field in which to order package files by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageorder\">\n      <a href=\"#packageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageOrder</h2>\n    <p>Ways in which lists of packages can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order packages by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packageorderfield\">PackageOrderField</a></code>)</p></td>\n<td><p>The field in which to order packages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionorder\">\n      <a href=\"#packageversionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionOrder</h2>\n    <p>Ways in which lists of package versions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package versions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packageversionorderfield\">PackageVersionOrderField</a></code>)</p></td>\n<td><p>The field in which to order package versions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateenterpriseidentityproviderrecoverycodesinput\">\n      <a href=\"#regenerateenterpriseidentityproviderrecoverycodesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateEnterpriseIdentityProviderRecoveryCodesInput</h2>\n    <p>Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set an identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintokeninput\">\n      <a href=\"#regenerateverifiabledomaintokeninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateVerifiableDomainTokenInput</h2>\n    <p>Autogenerated input type of RegenerateVerifiableDomainToken.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to regenerate the verification token of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeploymentsinput\">\n      <a href=\"#rejectdeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RejectDeploymentsInput</h2>\n    <p>Autogenerated input type of RejectDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for rejecting deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseidentityproviderinput\">\n      <a href=\"#removeenterpriseidentityproviderinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseIdentityProviderInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseIdentityProvider.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise from which to remove the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseorganizationinput\">\n      <a href=\"#removeenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise from which the organization should be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove from the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterprisesupportentitlementinput\">\n      <a href=\"#removeenterprisesupportentitlementinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseSupportEntitlementInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseSupportEntitlement.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a member who will lose the support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvoteinput\">\n      <a href=\"#removeupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveUpvoteInput</h2>\n    <p>Autogenerated input type of RemoveUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to remove upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationorder\">\n      <a href=\"#repositorymigrationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationOrder</h2>\n    <p>Ordering options for repository migrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorymigrationorderdirection\">RepositoryMigrationOrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorymigrationorderfield\">RepositoryMigrationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository migrations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckinput\">\n      <a href=\"#requiredstatuscheckinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckInput</h2>\n    <p>Specifies the attributes for a new or updated required status check.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse &quot;any&quot; to allow any app to set the status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Status check context that must pass for commits to be accepted to the matching branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokeenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#revokeenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to revoke the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokemigratorroleinput\">\n      <a href=\"#revokemigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to revoke the migrator role from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifierfilter\">\n      <a href=\"#securityadvisoryidentifierfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifierFilter</h2>\n    <p>An advisory identifier to filter results on.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryidentifiertype\">SecurityAdvisoryIdentifierType!</a></code>)</p></td>\n<td><p>The identifier type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier string. Supports exact or partial matching.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryorder\">\n      <a href=\"#securityadvisoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryOrder</h2>\n    <p>Ordering options for security advisory connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryorderfield\">SecurityAdvisoryOrderField!</a></code>)</p></td>\n<td><p>The field to order security advisories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityorder\">\n      <a href=\"#securityvulnerabilityorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityOrder</h2>\n    <p>Ordering options for security vulnerability connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityvulnerabilityorderfield\">SecurityVulnerabilityOrderField!</a></code>)</p></td>\n<td><p>The field to order security vulnerabilities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setenterpriseidentityproviderinput\">\n      <a href=\"#setenterpriseidentityproviderinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetEnterpriseIdentityProviderInput</h2>\n    <p>Autogenerated input type of SetEnterpriseIdentityProvider.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm!</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set an identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm!</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setorganizationinteractionlimitinput\">\n      <a href=\"#setorganizationinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetOrganizationInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetOrganizationInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setrepositoryinteractionlimitinput\">\n      <a href=\"#setrepositoryinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetRepositoryInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetRepositoryInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setuserinteractionlimitinput\">\n      <a href=\"#setuserinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetUserInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetUserInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the user to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsororder\">\n      <a href=\"#sponsororder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorOrder</h2>\n    <p>Ordering options for connections to get sponsor entities for GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsororderfield\">SponsorOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsor entities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableorder\">\n      <a href=\"#sponsorableorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableOrder</h2>\n    <p>Ordering options for connections to get sponsorable entities for GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorableorderfield\">SponsorableOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorable entities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityorder\">\n      <a href=\"#sponsorsactivityorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityOrder</h2>\n    <p>Ordering options for GitHub Sponsors activity connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsactivityorderfield\">SponsorsActivityOrderField!</a></code>)</p></td>\n<td><p>The field to order activity by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstierorder\">\n      <a href=\"#sponsorstierorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierOrder</h2>\n    <p>Ordering options for Sponsors tiers connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorstierorderfield\">SponsorsTierOrderField!</a></code>)</p></td>\n<td><p>The field to order tiers by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletterorder\">\n      <a href=\"#sponsorshipnewsletterorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterOrder</h2>\n    <p>Ordering options for sponsorship newsletter connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshipnewsletterorderfield\">SponsorshipNewsletterOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorship newsletters by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshiporder\">\n      <a href=\"#sponsorshiporder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipOrder</h2>\n    <p>Ordering options for sponsorship connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshiporderfield\">SponsorshipOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorship by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"startrepositorymigrationinput\">\n      <a href=\"#startrepositorymigrationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StartRepositoryMigrationInput</h2>\n    <p>Autogenerated input type of StartRepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to continue the migration on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitArchiveUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded git archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>metadataArchiveUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded metadata archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceRepositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source repository URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswerinput\">\n      <a href=\"#unmarkdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of UnmarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to unmark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncommentinput\">\n      <a href=\"#updatediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new contents of the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioninput\">\n      <a href=\"#updatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new contents of the discussion body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of a discussion category within the same repository to change this discussion to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new discussion title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseadministratorroleinput\">\n      <a href=\"#updateenterpriseadministratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAdministratorRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAdministratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a administrator whose role is being changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The new role for the Enterprise administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the base repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the base repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseownerorganizationroleinput\">\n      <a href=\"#updateenterpriseownerorganizationroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOwnerOrganizationRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the owner belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization for membership change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role to assume in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironmentinput\">\n      <a href=\"#updateenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnvironmentInput</h2>\n    <p>Autogenerated input type of UpdateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The ids of users or teams that can approve deployments to this environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The wait timer in minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsettinginput\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListForInstalledAppsEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list configuration for installed GitHub Apps setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsettinginput\">\n      <a href=\"#updatenotificationrestrictionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateNotificationRestrictionSettingInput</h2>\n    <p>Autogenerated input type of UpdateNotificationRestrictionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>The value for the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Enable forking of private repositories in the organization?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextinput\">\n      <a href=\"#updateprojectnextinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectNextInput</h2>\n    <p>Autogenerated input type of UpdateProjectNext.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Set the project to closed or open.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the readme description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Set the project to public or private.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the short description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the title of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextitemfieldinput\">\n      <a href=\"#updateprojectnextitemfieldinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectNextItemFieldInput</h2>\n    <p>Autogenerated input type of UpdateProjectNextItemField.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fieldId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the field to be updated. Only supports custom fields and status for now.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the item to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The value which will be set on the field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranchinput\">\n      <a href=\"#updatepullrequestbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestBranchInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The head ref oid for the upstream branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesponsorshippreferencesinput\">\n      <a href=\"#updatesponsorshippreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSponsorshipPreferencesInput</h2>\n    <p>Autogenerated input type of UpdateSponsorshipPreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy</a></code>)</p></td>\n<td><p>Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>receiveEmails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsor should receive email updates from the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainorder\">\n      <a href=\"#verifiabledomainorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainOrder</h2>\n    <p>Ordering options for verifiable domain connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#verifiabledomainorderfield\">VerifiableDomainOrderField!</a></code>)</p></td>\n<td><p>The field to order verifiable domains by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomaininput\">\n      <a href=\"#verifyverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifyVerifiableDomainInput</h2>\n    <p>Autogenerated input type of VerifyVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to verify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
+    "html": "<div>\n  <div>\n    <h2 id=\"abortqueuedmigrationsinput\">\n      <a href=\"#abortqueuedmigrationsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AbortQueuedMigrationsInput</h2>\n    <p>Autogenerated input type of AbortQueuedMigrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that is running the migrations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"acceptenterpriseadministratorinvitationinput\">\n      <a href=\"#acceptenterpriseadministratorinvitationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AcceptEnterpriseAdministratorInvitationInput</h2>\n    <p>Autogenerated input type of AcceptEnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the invitation being accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"accepttopicsuggestioninput\">\n      <a href=\"#accepttopicsuggestioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AcceptTopicSuggestionInput</h2>\n    <p>Autogenerated input type of AcceptTopicSuggestion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the suggested topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncommentinput\">\n      <a href=\"#adddiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddDiscussionCommentInput</h2>\n    <p>Autogenerated input type of AddDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyToId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment within this discussion to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterprisesupportentitlementinput\">\n      <a href=\"#addenterprisesupportentitlementinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseSupportEntitlementInput</h2>\n    <p>Autogenerated input type of AddEnterpriseSupportEntitlement.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a member who will receive the support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectnextiteminput\">\n      <a href=\"#addprojectnextiteminput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectNextItemInput</h2>\n    <p>Autogenerated input type of AddProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The content id of the item (Issue or PullRequest).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to add the item to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvoteinput\">\n      <a href=\"#addupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddUpvoteInput</h2>\n    <p>Autogenerated input type of AddUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomaininput\">\n      <a href=\"#addverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddVerifiableDomainInput</h2>\n    <p>Autogenerated input type of AddVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner to add the domain to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeploymentsinput\">\n      <a href=\"#approvedeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveDeploymentsInput</h2>\n    <p>Autogenerated input type of ApproveDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for approving deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomaininput\">\n      <a href=\"#approveverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveVerifiableDomainInput</h2>\n    <p>Autogenerated input type of ApproveVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to approve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelenterpriseadmininvitationinput\">\n      <a href=\"#cancelenterpriseadmininvitationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CancelEnterpriseAdminInvitationInput</h2>\n    <p>Autogenerated input type of CancelEnterpriseAdminInvitation.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pending enterprise administrator invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelsponsorshipinput\">\n      <a href=\"#cancelsponsorshipinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CancelSponsorshipInput</h2>\n    <p>Autogenerated input type of CancelSponsorship.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitmessage\">\n      <a href=\"#commitmessage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitMessage</h2>\n    <p>A message to include with a new commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The headline of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"committablebranch\">\n      <a href=\"#committablebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommittableBranch</h2>\n    <p>A git ref for a commit to be appended to.</p>\n<p>The ref must be a branch, i.e. its fully qualified name must start\nwith <code>refs/heads/</code> (although the input is not required to be fully\nqualified).</p>\n<p>The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.</p>\n<h3 id=\"examples\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#examples\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Examples</h3>\n<p>Specify a branch using a global node ID:</p>\n<pre><code>{ &quot;id&quot;: &quot;MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=&quot; }\n</code></pre>\n<p>Specify a branch using nameWithOwner and branch name:</p>\n<pre><code>{\n  &quot;nameWithOwner&quot;: &quot;github/graphql-client&quot;,\n  &quot;branchName&quot;: &quot;main&quot;\n}.\n</code></pre>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The unqualified name of the branch to append the commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryNameWithOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The nameWithOwner of the repository to commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraftinput\">\n      <a href=\"#convertpullrequesttodraftinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertPullRequestToDraftInput</h2>\n    <p>Autogenerated input type of ConvertPullRequestToDraft.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to convert to draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranchinput\">\n      <a href=\"#createcommitonbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCommitOnBranchInput</h2>\n    <p>Autogenerated input type of CreateCommitOnBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#committablebranch\">CommittableBranch!</a></code>)</p></td>\n<td><p>The Ref to be updated.  Must be a branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The git commit oid expected at the head of the branch prior to the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fileChanges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#filechanges\">FileChanges</a></code>)</p></td>\n<td><p>A description of changes to files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#commitmessage\">CommitMessage!</a></code>)</p></td>\n<td><p>The commit message the be included with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussioninput\">\n      <a href=\"#creatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDiscussionInput</h2>\n    <p>Autogenerated input type of CreateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion category to associate with this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the repository on which to create the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironmentinput\">\n      <a href=\"#createenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnvironmentInput</h2>\n    <p>Autogenerated input type of CreateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createmigrationsourceinput\">\n      <a href=\"#createmigrationsourceinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateMigrationSourceInput</h2>\n    <p>Autogenerated input type of CreateMigrationSource.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source access token.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>githubPat</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The GitHub personal access token of the user importing to the target repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createsponsorshipinput\">\n      <a href=\"#createsponsorshipinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateSponsorshipInput</h2>\n    <p>Autogenerated input type of CreateSponsorship.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>amount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRecurring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy</a></code>)</p></td>\n<td><p>Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>receiveEmails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsor should receive email updates from the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tierId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of one of sponsorable&apos;s existing tiers to sponsor at. Required if amount is not specified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"declinetopicsuggestioninput\">\n      <a href=\"#declinetopicsuggestioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeclineTopicSuggestionInput</h2>\n    <p>Autogenerated input type of DeclineTopicSuggestion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the suggested topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#topicsuggestiondeclinereason\">TopicSuggestionDeclineReason!</a></code>)</p></td>\n<td><p>The reason why the suggested topic is declined.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncommentinput\">\n      <a href=\"#deletediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node id of the discussion comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioninput\">\n      <a href=\"#deletediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironmentinput\">\n      <a href=\"#deleteenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteEnvironmentInput</h2>\n    <p>Autogenerated input type of DeleteEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the environment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversioninput\">\n      <a href=\"#deletepackageversioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePackageVersionInput</h2>\n    <p>Autogenerated input type of DeletePackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersionId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the package version to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectnextiteminput\">\n      <a href=\"#deleteprojectnextiteminput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectNextItemInput</h2>\n    <p>Autogenerated input type of DeleteProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the item to be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project from which the item should be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomaininput\">\n      <a href=\"#deleteverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteVerifiableDomainInput</h2>\n    <p>Autogenerated input type of DeleteVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionorder\">\n      <a href=\"#discussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionOrder</h2>\n    <p>Ways in which lists of discussions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order discussions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#discussionorderfield\">DiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalertinput\">\n      <a href=\"#dismissrepositoryvulnerabilityalertinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissRepositoryVulnerabilityAlertInput</h2>\n    <p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#dismissreason\">DismissReason!</a></code>)</p></td>\n<td><p>The reason the Dependabot alert is being dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlertId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Dependabot alert ID to dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationorder\">\n      <a href=\"#enterpriseserverinstallationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationOrder</h2>\n    <p>Ordering options for Enterprise Server installation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserverinstallationorderfield\">EnterpriseServerInstallationOrderField!</a></code>)</p></td>\n<td><p>The field to order Enterprise Server installations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fileaddition\">\n      <a href=\"#fileaddition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileAddition</h2>\n    <p>A command to add a file at the given path with the given contents as part of a\ncommit.  Any existing file at that that path will be replaced.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#base64string\">Base64String!</a></code>)</p></td>\n<td><p>The base64 encoded contents of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the repository where the file will be located.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filechanges\">\n      <a href=\"#filechanges\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileChanges</h2>\n    <p>A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file <code>additions</code> and zero or more\nfile <code>deletions</code>.</p>\n<p>Both fields are optional; omitting both will produce a commit with no\nfile changes.</p>\n<p><code>deletions</code> and <code>additions</code> describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n<code>/</code>.  The root of a git tree is an empty string, so paths are not\nslash-prefixed.</p>\n<p><code>path</code> values must be unique across all <code>additions</code> and <code>deletions</code>\nprovided.  Any duplication will result in a validation error.</p>\n<h3 id=\"encoding\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#encoding\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Encoding</h3>\n<p>File contents must be provided in full for each <code>FileAddition</code>.</p>\n<p>The <code>contents</code> of a <code>FileAddition</code> must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used.  Invalid base64\nencoding will be rejected with a validation error.</p>\n<p>The encoded contents may be binary.</p>\n<p>For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding).  No charset transcoding or\nline-ending normalization will be performed; it is the client&apos;s\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (<code>\\n</code> or <code>\\r\\n</code>), and that all files end\nwith a newline.</p>\n<h3 id=\"modeling-file-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#modeling-file-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Modeling file changes</h3>\n<p>Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the <code>FileChanges</code> type as follows:</p>\n<ol>\n<li>\n<p>New file addition: create file <code>hello world\\n</code> at path <code>docs/README.txt</code>:</p>\n<p>   {\n&quot;additions&quot; [\n{\n&quot;path&quot;: &quot;docs/README.txt&quot;,\n&quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n}\n]\n}</p>\n</li>\n<li>\n<p>Existing file modification: change existing <code>docs/README.txt</code> to have new\ncontent <code>new content here\\n</code>:</p>\n<pre><code>{\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new content here\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>Existing file deletion: remove existing file <code>docs/README.txt</code>.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with no changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to the same content at\n<code>newdocs/README.txt</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to a file at path\n<code>newdocs/README.txt</code> with content <code>new contents\\n</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new contents\\n&quot;)\n    }\n  ]\n}.\n</code></pre>\n</li>\n</ol>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#fileaddition\">[FileAddition!]</a></code>)</p></td>\n<td><p>File to add or change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#filedeletion\">[FileDeletion!]</a></code>)</p></td>\n<td><p>Files to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filedeletion\">\n      <a href=\"#filedeletion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileDeletion</h2>\n    <p>A command to delete the file at the given path as part of a commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#grantenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantmigratorroleinput\">\n      <a href=\"#grantmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"inviteenterpriseadmininput\">\n      <a href=\"#inviteenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>InviteEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of InviteEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person to invite as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which you want to invite an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The login of a user to invite as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its database ID. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneNumber</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswerinput\">\n      <a href=\"#markdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of MarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to mark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenterpriseownerorder\">\n      <a href=\"#orgenterpriseownerorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnterpriseOwnerOrder</h2>\n    <p>Ordering options for an organization&apos;s enterprise owner connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgenterpriseownerorderfield\">OrgEnterpriseOwnerOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise owners by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileorder\">\n      <a href=\"#packagefileorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileOrder</h2>\n    <p>Ways in which lists of package files can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package files by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagefileorderfield\">PackageFileOrderField</a></code>)</p></td>\n<td><p>The field in which to order package files by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageorder\">\n      <a href=\"#packageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageOrder</h2>\n    <p>Ways in which lists of packages can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order packages by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packageorderfield\">PackageOrderField</a></code>)</p></td>\n<td><p>The field in which to order packages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionorder\">\n      <a href=\"#packageversionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionOrder</h2>\n    <p>Ways in which lists of package versions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package versions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packageversionorderfield\">PackageVersionOrderField</a></code>)</p></td>\n<td><p>The field in which to order package versions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateenterpriseidentityproviderrecoverycodesinput\">\n      <a href=\"#regenerateenterpriseidentityproviderrecoverycodesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateEnterpriseIdentityProviderRecoveryCodesInput</h2>\n    <p>Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set an identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintokeninput\">\n      <a href=\"#regenerateverifiabledomaintokeninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateVerifiableDomainTokenInput</h2>\n    <p>Autogenerated input type of RegenerateVerifiableDomainToken.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to regenerate the verification token of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeploymentsinput\">\n      <a href=\"#rejectdeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RejectDeploymentsInput</h2>\n    <p>Autogenerated input type of RejectDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for rejecting deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseidentityproviderinput\">\n      <a href=\"#removeenterpriseidentityproviderinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseIdentityProviderInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseIdentityProvider.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise from which to remove the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseorganizationinput\">\n      <a href=\"#removeenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise from which the organization should be removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove from the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterprisesupportentitlementinput\">\n      <a href=\"#removeenterprisesupportentitlementinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseSupportEntitlementInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseSupportEntitlement.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a member who will lose the support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvoteinput\">\n      <a href=\"#removeupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveUpvoteInput</h2>\n    <p>Autogenerated input type of RemoveUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to remove upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationorder\">\n      <a href=\"#repositorymigrationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationOrder</h2>\n    <p>Ordering options for repository migrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorymigrationorderdirection\">RepositoryMigrationOrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorymigrationorderfield\">RepositoryMigrationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository migrations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckinput\">\n      <a href=\"#requiredstatuscheckinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckInput</h2>\n    <p>Specifies the attributes for a new or updated required status check.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse &quot;any&quot; to allow any app to set the status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Status check context that must pass for commits to be accepted to the matching branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokeenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#revokeenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to revoke the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokemigratorroleinput\">\n      <a href=\"#revokemigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to revoke the migrator role from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifierfilter\">\n      <a href=\"#securityadvisoryidentifierfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifierFilter</h2>\n    <p>An advisory identifier to filter results on.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryidentifiertype\">SecurityAdvisoryIdentifierType!</a></code>)</p></td>\n<td><p>The identifier type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier string. Supports exact or partial matching.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryorder\">\n      <a href=\"#securityadvisoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryOrder</h2>\n    <p>Ordering options for security advisory connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryorderfield\">SecurityAdvisoryOrderField!</a></code>)</p></td>\n<td><p>The field to order security advisories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityorder\">\n      <a href=\"#securityvulnerabilityorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityOrder</h2>\n    <p>Ordering options for security vulnerability connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityvulnerabilityorderfield\">SecurityVulnerabilityOrderField!</a></code>)</p></td>\n<td><p>The field to order security vulnerabilities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setenterpriseidentityproviderinput\">\n      <a href=\"#setenterpriseidentityproviderinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetEnterpriseIdentityProviderInput</h2>\n    <p>Autogenerated input type of SetEnterpriseIdentityProvider.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm!</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set an identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm!</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setorganizationinteractionlimitinput\">\n      <a href=\"#setorganizationinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetOrganizationInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetOrganizationInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setrepositoryinteractionlimitinput\">\n      <a href=\"#setrepositoryinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetRepositoryInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetRepositoryInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setuserinteractionlimitinput\">\n      <a href=\"#setuserinteractionlimitinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SetUserInteractionLimitInput</h2>\n    <p>Autogenerated input type of SetUserInteractionLimit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiry</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimitexpiry\">RepositoryInteractionLimitExpiry</a></code>)</p></td>\n<td><p>When this limit should expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The limit to set.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the user to set a limit for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsororder\">\n      <a href=\"#sponsororder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorOrder</h2>\n    <p>Ordering options for connections to get sponsor entities for GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsororderfield\">SponsorOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsor entities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableorder\">\n      <a href=\"#sponsorableorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableOrder</h2>\n    <p>Ordering options for connections to get sponsorable entities for GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorableorderfield\">SponsorableOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorable entities by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityorder\">\n      <a href=\"#sponsorsactivityorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityOrder</h2>\n    <p>Ordering options for GitHub Sponsors activity connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsactivityorderfield\">SponsorsActivityOrderField!</a></code>)</p></td>\n<td><p>The field to order activity by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstierorder\">\n      <a href=\"#sponsorstierorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierOrder</h2>\n    <p>Ordering options for Sponsors tiers connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorstierorderfield\">SponsorsTierOrderField!</a></code>)</p></td>\n<td><p>The field to order tiers by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletterorder\">\n      <a href=\"#sponsorshipnewsletterorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterOrder</h2>\n    <p>Ordering options for sponsorship newsletter connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshipnewsletterorderfield\">SponsorshipNewsletterOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorship newsletters by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshiporder\">\n      <a href=\"#sponsorshiporder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipOrder</h2>\n    <p>Ordering options for sponsorship connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshiporderfield\">SponsorshipOrderField!</a></code>)</p></td>\n<td><p>The field to order sponsorship by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"startrepositorymigrationinput\">\n      <a href=\"#startrepositorymigrationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StartRepositoryMigrationInput</h2>\n    <p>Autogenerated input type of StartRepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Octoshift migration source access token.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to continue the migration on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitArchiveUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded git archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>githubPat</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The GitHub personal access token of the user importing to the target repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>metadataArchiveUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded metadata archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceRepositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source repository URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswerinput\">\n      <a href=\"#unmarkdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of UnmarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to unmark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncommentinput\">\n      <a href=\"#updatediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new contents of the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioninput\">\n      <a href=\"#updatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new contents of the discussion body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of a discussion category within the same repository to change this discussion to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new discussion title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseadministratorroleinput\">\n      <a href=\"#updateenterpriseadministratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAdministratorRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAdministratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the admin belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of a administrator whose role is being changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The new role for the Enterprise administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the base repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the base repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseownerorganizationroleinput\">\n      <a href=\"#updateenterpriseownerorganizationroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOwnerOrganizationRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the owner belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization for membership change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role to assume in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironmentinput\">\n      <a href=\"#updateenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnvironmentInput</h2>\n    <p>Autogenerated input type of UpdateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The ids of users or teams that can approve deployments to this environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The wait timer in minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsettinginput\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListForInstalledAppsEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list configuration for installed GitHub Apps setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsettinginput\">\n      <a href=\"#updatenotificationrestrictionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateNotificationRestrictionSettingInput</h2>\n    <p>Autogenerated input type of UpdateNotificationRestrictionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>The value for the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Enable forking of private repositories in the organization?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextinput\">\n      <a href=\"#updateprojectnextinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectNextInput</h2>\n    <p>Autogenerated input type of UpdateProjectNext.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Set the project to closed or open.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the readme description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Set the project to public or private.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the short description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Set the title of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextitemfieldinput\">\n      <a href=\"#updateprojectnextitemfieldinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectNextItemFieldInput</h2>\n    <p>Autogenerated input type of UpdateProjectNextItemField.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fieldId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the field to be updated. Only supports custom fields and status for now.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the item to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The value which will be set on the field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranchinput\">\n      <a href=\"#updatepullrequestbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestBranchInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The head ref oid for the upstream branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesponsorshippreferencesinput\">\n      <a href=\"#updatesponsorshippreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSponsorshipPreferencesInput</h2>\n    <p>Autogenerated input type of UpdateSponsorshipPreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy</a></code>)</p></td>\n<td><p>Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>receiveEmails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the sponsor should receive email updates from the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorableLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainorder\">\n      <a href=\"#verifiabledomainorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainOrder</h2>\n    <p>Ordering options for verifiable domain connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#verifiabledomainorderfield\">VerifiableDomainOrderField!</a></code>)</p></td>\n<td><p>The field to order verifiable domains by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomaininput\">\n      <a href=\"#verifyverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifyVerifiableDomainInput</h2>\n    <p>Autogenerated input type of VerifyVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to verify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#abortqueuedmigrationsinput\">\n      AbortQueuedMigrationsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#abortqueuedmigrationsinput\">\n      AbortQueuedMigrationsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#acceptenterpriseadministratorinvitationinput\">\n      AcceptEnterpriseAdministratorInvitationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#acceptenterpriseadministratorinvitationinput\">\n      AcceptEnterpriseAdministratorInvitationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#accepttopicsuggestioninput\">\n      AcceptTopicSuggestionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#accepttopicsuggestioninput\">\n      AcceptTopicSuggestionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterprisesupportentitlementinput\">\n      AddEnterpriseSupportEntitlementInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterprisesupportentitlementinput\">\n      AddEnterpriseSupportEntitlementInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectnextiteminput\">\n      AddProjectNextItemInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectnextiteminput\">\n      AddProjectNextItemInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstarinput\">\n      AddStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstarinput\">\n      AddStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cancelenterpriseadmininvitationinput\">\n      CancelEnterpriseAdminInvitationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cancelenterpriseadmininvitationinput\">\n      CancelEnterpriseAdminInvitationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cancelsponsorshipinput\">\n      CancelSponsorshipInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cancelsponsorshipinput\">\n      CancelSponsorshipInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitauthor\">\n      CommitAuthor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitauthor\">\n      CommitAuthor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitmessage\">\n      CommitMessage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitmessage\">\n      CommitMessage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#committablebranch\">\n      CommittableBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#committablebranch\">\n      CommittableBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionorder\">\n      ContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionorder\">\n      ContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createmigrationsourceinput\">\n      CreateMigrationSourceInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createmigrationsourceinput\">\n      CreateMigrationSourceInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrefinput\">\n      CreateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrefinput\">\n      CreateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createsponsorshipinput\">\n      CreateSponsorshipInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createsponsorshipinput\">\n      CreateSponsorshipInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#declinetopicsuggestioninput\">\n      DeclineTopicSuggestionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#declinetopicsuggestioninput\">\n      DeclineTopicSuggestionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectnextiteminput\">\n      DeleteProjectNextItemInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectnextiteminput\">\n      DeleteProjectNextItemInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismissrepositoryvulnerabilityalertinput\">\n      DismissRepositoryVulnerabilityAlertInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismissrepositoryvulnerabilityalertinput\">\n      DismissRepositoryVulnerabilityAlertInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallationorder\">\n      EnterpriseServerInstallationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallationorder\">\n      EnterpriseServerInstallationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#fileaddition\">\n      FileAddition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#fileaddition\">\n      FileAddition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filechanges\">\n      FileChanges</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filechanges\">\n      FileChanges</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filedeletion\">\n      FileDeletion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filedeletion\">\n      FileDeletion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuserinput\">\n      FollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuserinput\">\n      FollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistorder\">\n      GistOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistorder\">\n      GistOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantenterpriseorganizationsmigratorroleinput\">\n      GrantEnterpriseOrganizationsMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantenterpriseorganizationsmigratorroleinput\">\n      GrantEnterpriseOrganizationsMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantmigratorroleinput\">\n      GrantMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantmigratorroleinput\">\n      GrantMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#inviteenterpriseadmininput\">\n      InviteEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#inviteenterpriseadmininput\">\n      InviteEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuefilters\">\n      IssueFilters</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuefilters\">\n      IssueFilters</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueorder\">\n      IssueOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueorder\">\n      IssueOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelorder\">\n      LabelOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelorder\">\n      LabelOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageorder\">\n      LanguageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageorder\">\n      LanguageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenterpriseownerorder\">\n      OrgEnterpriseOwnerOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenterpriseownerorder\">\n      OrgEnterpriseOwnerOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageorder\">\n      PackageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageorder\">\n      PackageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectorder\">\n      ProjectOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectorder\">\n      ProjectOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionorder\">\n      ReactionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionorder\">\n      ReactionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reforder\">\n      RefOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reforder\">\n      RefOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdate\">\n      RefUpdate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdate\">\n      RefUpdate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateenterpriseidentityproviderrecoverycodesinput\">\n      RegenerateEnterpriseIdentityProviderRecoveryCodesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateenterpriseidentityproviderrecoverycodesinput\">\n      RegenerateEnterpriseIdentityProviderRecoveryCodesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseidentityproviderinput\">\n      RemoveEnterpriseIdentityProviderInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseidentityproviderinput\">\n      RemoveEnterpriseIdentityProviderInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseorganizationinput\">\n      RemoveEnterpriseOrganizationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseorganizationinput\">\n      RemoveEnterpriseOrganizationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterprisesupportentitlementinput\">\n      RemoveEnterpriseSupportEntitlementInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterprisesupportentitlementinput\">\n      RemoveEnterpriseSupportEntitlementInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigrationorder\">\n      RepositoryMigrationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigrationorder\">\n      RepositoryMigrationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requiredstatuscheckinput\">\n      RequiredStatusCheckInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requiredstatuscheckinput\">\n      RequiredStatusCheckInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokeenterpriseorganizationsmigratorroleinput\">\n      RevokeEnterpriseOrganizationsMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokeenterpriseorganizationsmigratorroleinput\">\n      RevokeEnterpriseOrganizationsMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokemigratorroleinput\">\n      RevokeMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokemigratorroleinput\">\n      RevokeMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifierfilter\">\n      SecurityAdvisoryIdentifierFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifierfilter\">\n      SecurityAdvisoryIdentifierFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryorder\">\n      SecurityAdvisoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryorder\">\n      SecurityAdvisoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityorder\">\n      SecurityVulnerabilityOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityorder\">\n      SecurityVulnerabilityOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setenterpriseidentityproviderinput\">\n      SetEnterpriseIdentityProviderInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setenterpriseidentityproviderinput\">\n      SetEnterpriseIdentityProviderInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setorganizationinteractionlimitinput\">\n      SetOrganizationInteractionLimitInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setorganizationinteractionlimitinput\">\n      SetOrganizationInteractionLimitInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setrepositoryinteractionlimitinput\">\n      SetRepositoryInteractionLimitInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setrepositoryinteractionlimitinput\">\n      SetRepositoryInteractionLimitInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setuserinteractionlimitinput\">\n      SetUserInteractionLimitInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setuserinteractionlimitinput\">\n      SetUserInteractionLimitInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsororder\">\n      SponsorOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsororder\">\n      SponsorOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorableorder\">\n      SponsorableOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorableorder\">\n      SponsorableOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsactivityorder\">\n      SponsorsActivityOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsactivityorder\">\n      SponsorsActivityOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstierorder\">\n      SponsorsTierOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstierorder\">\n      SponsorsTierOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipnewsletterorder\">\n      SponsorshipNewsletterOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipnewsletterorder\">\n      SponsorshipNewsletterOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starorder\">\n      StarOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starorder\">\n      StarOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#startrepositorymigrationinput\">\n      StartRepositoryMigrationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#startrepositorymigrationinput\">\n      StartRepositoryMigrationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamorder\">\n      TeamOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamorder\">\n      TeamOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseadministratorroleinput\">\n      UpdateEnterpriseAdministratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseadministratorroleinput\">\n      UpdateEnterpriseAdministratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseownerorganizationroleinput\">\n      UpdateEnterpriseOwnerOrganizationRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseownerorganizationroleinput\">\n      UpdateEnterpriseOwnerOrganizationRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\">\n      UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\">\n      UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectnextinput\">\n      UpdateProjectNextInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectnextinput\">\n      UpdateProjectNextInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectnextitemfieldinput\">\n      UpdateProjectNextItemFieldInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectnextitemfieldinput\">\n      UpdateProjectNextItemFieldInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestbranchinput\">\n      UpdatePullRequestBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestbranchinput\">\n      UpdatePullRequestBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesponsorshippreferencesinput\">\n      UpdateSponsorshipPreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesponsorshippreferencesinput\">\n      UpdateSponsorshipPreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -3499,1463 +3499,1463 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncommentinput\">\n      <a href=\"#adddiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddDiscussionCommentInput</h2>\n    <p>Autogenerated input type of AddDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyToId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment within this discussion to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmininput\">\n      <a href=\"#addenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of AddEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise account to which the administrator should be added.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to add as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvoteinput\">\n      <a href=\"#addupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddUpvoteInput</h2>\n    <p>Autogenerated input type of AddUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomaininput\">\n      <a href=\"#addverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddVerifiableDomainInput</h2>\n    <p>Autogenerated input type of AddVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner to add the domain to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeploymentsinput\">\n      <a href=\"#approvedeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveDeploymentsInput</h2>\n    <p>Autogenerated input type of ApproveDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for approving deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomaininput\">\n      <a href=\"#approveverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveVerifiableDomainInput</h2>\n    <p>Autogenerated input type of ApproveVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to approve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitmessage\">\n      <a href=\"#commitmessage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitMessage</h2>\n    <p>A message to include with a new commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headline</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The headline of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"committablebranch\">\n      <a href=\"#committablebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommittableBranch</h2>\n    <p>A git ref for a commit to be appended to.</p>\n<p>The ref must be a branch, i.e. its fully qualified name must start\nwith <code>refs/heads/</code> (although the input is not required to be fully\nqualified).</p>\n<p>The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.</p>\n<h3 id=\"examples\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#examples\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Examples</h3>\n<p>Specify a branch using a global node ID:</p>\n<pre><code>{ &quot;id&quot;: &quot;MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=&quot; }\n</code></pre>\n<p>Specify a branch using nameWithOwner and branch name:</p>\n<pre><code>{\n  &quot;nameWithOwner&quot;: &quot;github/graphql-client&quot;,\n  &quot;branchName&quot;: &quot;main&quot;\n}.\n</code></pre>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The unqualified name of the branch to append the commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryNameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The nameWithOwner of the repository to commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraftinput\">\n      <a href=\"#convertpullrequesttodraftinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertPullRequestToDraftInput</h2>\n    <p>Autogenerated input type of ConvertPullRequestToDraft.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to convert to draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranchinput\">\n      <a href=\"#createcommitonbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCommitOnBranchInput</h2>\n    <p>Autogenerated input type of CreateCommitOnBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#committablebranch\">CommittableBranch!</a></code>)</p></td>\n<td><p>The Ref to be updated.  Must be a branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The git commit oid expected at the head of the branch prior to the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fileChanges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#filechanges\">FileChanges</a></code>)</p></td>\n<td><p>A description of changes to files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#commitmessage\">CommitMessage!</a></code>)</p></td>\n<td><p>The commit message the be included with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussioninput\">\n      <a href=\"#creatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDiscussionInput</h2>\n    <p>Autogenerated input type of CreateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion category to associate with this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the repository on which to create the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironmentinput\">\n      <a href=\"#createenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnvironmentInput</h2>\n    <p>Autogenerated input type of CreateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncommentinput\">\n      <a href=\"#deletediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node id of the discussion comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioninput\">\n      <a href=\"#deletediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironmentinput\">\n      <a href=\"#deleteenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteEnvironmentInput</h2>\n    <p>Autogenerated input type of DeleteEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the environment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversioninput\">\n      <a href=\"#deletepackageversioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePackageVersionInput</h2>\n    <p>Autogenerated input type of DeletePackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersionId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the package version to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomaininput\">\n      <a href=\"#deleteverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteVerifiableDomainInput</h2>\n    <p>Autogenerated input type of DeleteVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionorder\">\n      <a href=\"#discussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionOrder</h2>\n    <p>Ways in which lists of discussions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order discussions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#discussionorderfield\">DiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalertinput\">\n      <a href=\"#dismissrepositoryvulnerabilityalertinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissRepositoryVulnerabilityAlertInput</h2>\n    <p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#dismissreason\">DismissReason!</a></code>)</p></td>\n<td><p>The reason the Dependabot alert is being dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlertId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Dependabot alert ID to dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fileaddition\">\n      <a href=\"#fileaddition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileAddition</h2>\n    <p>A command to add a file at the given path with the given contents as part of a\ncommit.  Any existing file at that that path will be replaced.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contents</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#base64string\">Base64String!</a></code>)</p></td>\n<td><p>The base64 encoded contents of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the repository where the file will be located.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filechanges\">\n      <a href=\"#filechanges\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileChanges</h2>\n    <p>A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file <code>additions</code> and zero or more\nfile <code>deletions</code>.</p>\n<p>Both fields are optional; omitting both will produce a commit with no\nfile changes.</p>\n<p><code>deletions</code> and <code>additions</code> describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n<code>/</code>.  The root of a git tree is an empty string, so paths are not\nslash-prefixed.</p>\n<p><code>path</code> values must be unique across all <code>additions</code> and <code>deletions</code>\nprovided.  Any duplication will result in a validation error.</p>\n<h3 id=\"encoding\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#encoding\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Encoding</h3>\n<p>File contents must be provided in full for each <code>FileAddition</code>.</p>\n<p>The <code>contents</code> of a <code>FileAddition</code> must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used.  Invalid base64\nencoding will be rejected with a validation error.</p>\n<p>The encoded contents may be binary.</p>\n<p>For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding).  No charset transcoding or\nline-ending normalization will be performed; it is the client&apos;s\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (<code>\\n</code> or <code>\\r\\n</code>), and that all files end\nwith a newline.</p>\n<h3 id=\"modeling-file-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#modeling-file-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Modeling file changes</h3>\n<p>Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the <code>FileChanges</code> type as follows:</p>\n<ol>\n<li>\n<p>New file addition: create file <code>hello world\\n</code> at path <code>docs/README.txt</code>:</p>\n<p>   {\n&quot;additions&quot; [\n{\n&quot;path&quot;: &quot;docs/README.txt&quot;,\n&quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n}\n]\n}</p>\n</li>\n<li>\n<p>Existing file modification: change existing <code>docs/README.txt</code> to have new\ncontent <code>new content here\\n</code>:</p>\n<pre><code>{\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new content here\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>Existing file deletion: remove existing file <code>docs/README.txt</code>.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with no changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to the same content at\n<code>newdocs/README.txt</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to a file at path\n<code>newdocs/README.txt</code> with content <code>new contents\\n</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new contents\\n&quot;)\n    }\n  ]\n}.\n</code></pre>\n</li>\n</ol>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#fileaddition\">[FileAddition!]</a></code>)</p></td>\n<td><p>File to add or change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#filedeletion\">[FileDeletion!]</a></code>)</p></td>\n<td><p>Files to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filedeletion\">\n      <a href=\"#filedeletion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileDeletion</h2>\n    <p>A command to delete the file at the given path as part of a commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswerinput\">\n      <a href=\"#markdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of MarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to mark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenterpriseownerorder\">\n      <a href=\"#orgenterpriseownerorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnterpriseOwnerOrder</h2>\n    <p>Ordering options for an organization&apos;s enterprise owner connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgenterpriseownerorderfield\">OrgEnterpriseOwnerOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise owners by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileorder\">\n      <a href=\"#packagefileorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileOrder</h2>\n    <p>Ways in which lists of package files can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package files by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#packagefileorderfield\">PackageFileOrderField</a></code>)</p></td>\n<td><p>The field in which to order package files by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageorder\">\n      <a href=\"#packageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageOrder</h2>\n    <p>Ways in which lists of packages can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order packages by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#packageorderfield\">PackageOrderField</a></code>)</p></td>\n<td><p>The field in which to order packages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionorder\">\n      <a href=\"#packageversionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionOrder</h2>\n    <p>Ways in which lists of package versions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package versions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#packageversionorderfield\">PackageVersionOrderField</a></code>)</p></td>\n<td><p>The field in which to order package versions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintokeninput\">\n      <a href=\"#regenerateverifiabledomaintokeninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateVerifiableDomainTokenInput</h2>\n    <p>Autogenerated input type of RegenerateVerifiableDomainToken.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to regenerate the verification token of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeploymentsinput\">\n      <a href=\"#rejectdeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RejectDeploymentsInput</h2>\n    <p>Autogenerated input type of RejectDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for rejecting deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvoteinput\">\n      <a href=\"#removeupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveUpvoteInput</h2>\n    <p>Autogenerated input type of RemoveUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to remove upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckinput\">\n      <a href=\"#requiredstatuscheckinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckInput</h2>\n    <p>Specifies the attributes for a new or updated required status check.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse &quot;any&quot; to allow any app to set the status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Status check context that must pass for commits to be accepted to the matching branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswerinput\">\n      <a href=\"#unmarkdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of UnmarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to unmark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncommentinput\">\n      <a href=\"#updatediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new contents of the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioninput\">\n      <a href=\"#updatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new contents of the discussion body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of a discussion category within the same repository to change this discussion to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new discussion title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the base repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the base repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironmentinput\">\n      <a href=\"#updateenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnvironmentInput</h2>\n    <p>Autogenerated input type of UpdateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The ids of users or teams that can approve deployments to this environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The wait timer in minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsettinginput\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListForInstalledAppsEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list configuration for installed GitHub Apps setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsettinginput\">\n      <a href=\"#updatenotificationrestrictionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateNotificationRestrictionSettingInput</h2>\n    <p>Autogenerated input type of UpdateNotificationRestrictionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>The value for the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Enable forking of private repositories in the organization?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranchinput\">\n      <a href=\"#updatepullrequestbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestBranchInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The head ref oid for the upstream branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainorder\">\n      <a href=\"#verifiabledomainorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainOrder</h2>\n    <p>Ordering options for verifiable domain connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#verifiabledomainorderfield\">VerifiableDomainOrderField!</a></code>)</p></td>\n<td><p>The field to order verifiable domains by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomaininput\">\n      <a href=\"#verifyverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifyVerifiableDomainInput</h2>\n    <p>Autogenerated input type of VerifyVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to verify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstarinput\">\n      AddStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstarinput\">\n      AddStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitauthor\">\n      CommitAuthor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitauthor\">\n      CommitAuthor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitmessage\">\n      CommitMessage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitmessage\">\n      CommitMessage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#committablebranch\">\n      CommittableBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#committablebranch\">\n      CommittableBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionorder\">\n      ContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionorder\">\n      ContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrefinput\">\n      CreateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrefinput\">\n      CreateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismissrepositoryvulnerabilityalertinput\">\n      DismissRepositoryVulnerabilityAlertInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismissrepositoryvulnerabilityalertinput\">\n      DismissRepositoryVulnerabilityAlertInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#fileaddition\">\n      FileAddition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#fileaddition\">\n      FileAddition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filechanges\">\n      FileChanges</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filechanges\">\n      FileChanges</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filedeletion\">\n      FileDeletion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filedeletion\">\n      FileDeletion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuserinput\">\n      FollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuserinput\">\n      FollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistorder\">\n      GistOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistorder\">\n      GistOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuefilters\">\n      IssueFilters</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuefilters\">\n      IssueFilters</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueorder\">\n      IssueOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueorder\">\n      IssueOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelorder\">\n      LabelOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelorder\">\n      LabelOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageorder\">\n      LanguageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageorder\">\n      LanguageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenterpriseownerorder\">\n      OrgEnterpriseOwnerOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenterpriseownerorder\">\n      OrgEnterpriseOwnerOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageorder\">\n      PackageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageorder\">\n      PackageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectorder\">\n      ProjectOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectorder\">\n      ProjectOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionorder\">\n      ReactionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionorder\">\n      ReactionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reforder\">\n      RefOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reforder\">\n      RefOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdate\">\n      RefUpdate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdate\">\n      RefUpdate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requiredstatuscheckinput\">\n      RequiredStatusCheckInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requiredstatuscheckinput\">\n      RequiredStatusCheckInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starorder\">\n      StarOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starorder\">\n      StarOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamorder\">\n      TeamOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamorder\">\n      TeamOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\">\n      UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\">\n      UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestbranchinput\">\n      UpdatePullRequestBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestbranchinput\">\n      UpdatePullRequestBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -4967,1435 +4967,1435 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncommentinput\">\n      <a href=\"#adddiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddDiscussionCommentInput</h2>\n    <p>Autogenerated input type of AddDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyToId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment within this discussion to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmininput\">\n      <a href=\"#addenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of AddEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise account to which the administrator should be added.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to add as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvoteinput\">\n      <a href=\"#addupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddUpvoteInput</h2>\n    <p>Autogenerated input type of AddUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomaininput\">\n      <a href=\"#addverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddVerifiableDomainInput</h2>\n    <p>Autogenerated input type of AddVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner to add the domain to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeploymentsinput\">\n      <a href=\"#approvedeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveDeploymentsInput</h2>\n    <p>Autogenerated input type of ApproveDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for approving deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomaininput\">\n      <a href=\"#approveverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveVerifiableDomainInput</h2>\n    <p>Autogenerated input type of ApproveVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to approve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitmessage\">\n      <a href=\"#commitmessage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitMessage</h2>\n    <p>A message to include with a new commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headline</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The headline of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"committablebranch\">\n      <a href=\"#committablebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommittableBranch</h2>\n    <p>A git ref for a commit to be appended to.</p>\n<p>The ref must be a branch, i.e. its fully qualified name must start\nwith <code>refs/heads/</code> (although the input is not required to be fully\nqualified).</p>\n<p>The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.</p>\n<h3 id=\"examples\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#examples\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Examples</h3>\n<p>Specify a branch using a global node ID:</p>\n<pre><code>{ &quot;id&quot;: &quot;MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=&quot; }\n</code></pre>\n<p>Specify a branch using nameWithOwner and branch name:</p>\n<pre><code>{\n  &quot;nameWithOwner&quot;: &quot;github/graphql-client&quot;,\n  &quot;branchName&quot;: &quot;main&quot;\n}.\n</code></pre>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The unqualified name of the branch to append the commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryNameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The nameWithOwner of the repository to commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraftinput\">\n      <a href=\"#convertpullrequesttodraftinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertPullRequestToDraftInput</h2>\n    <p>Autogenerated input type of ConvertPullRequestToDraft.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to convert to draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranchinput\">\n      <a href=\"#createcommitonbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCommitOnBranchInput</h2>\n    <p>Autogenerated input type of CreateCommitOnBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#committablebranch\">CommittableBranch!</a></code>)</p></td>\n<td><p>The Ref to be updated.  Must be a branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The git commit oid expected at the head of the branch prior to the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fileChanges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#filechanges\">FileChanges</a></code>)</p></td>\n<td><p>A description of changes to files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#commitmessage\">CommitMessage!</a></code>)</p></td>\n<td><p>The commit message the be included with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcontentattachmentinput\">\n      <a href=\"#createcontentattachmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateContentAttachmentInput</h2>\n    <p>Autogenerated input type of CreateContentAttachment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the content attachment, which may contain markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentReferenceId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the content_reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the content attachment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussioninput\">\n      <a href=\"#creatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDiscussionInput</h2>\n    <p>Autogenerated input type of CreateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion category to associate with this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the repository on which to create the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironmentinput\">\n      <a href=\"#createenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnvironmentInput</h2>\n    <p>Autogenerated input type of CreateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncommentinput\">\n      <a href=\"#deletediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node id of the discussion comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioninput\">\n      <a href=\"#deletediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironmentinput\">\n      <a href=\"#deleteenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteEnvironmentInput</h2>\n    <p>Autogenerated input type of DeleteEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the environment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversioninput\">\n      <a href=\"#deletepackageversioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePackageVersionInput</h2>\n    <p>Autogenerated input type of DeletePackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersionId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the package version to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomaininput\">\n      <a href=\"#deleteverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteVerifiableDomainInput</h2>\n    <p>Autogenerated input type of DeleteVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionorder\">\n      <a href=\"#discussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionOrder</h2>\n    <p>Ways in which lists of discussions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order discussions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#discussionorderfield\">DiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fileaddition\">\n      <a href=\"#fileaddition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileAddition</h2>\n    <p>A command to add a file at the given path with the given contents as part of a\ncommit.  Any existing file at that that path will be replaced.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contents</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#base64string\">Base64String!</a></code>)</p></td>\n<td><p>The base64 encoded contents of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the repository where the file will be located.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filechanges\">\n      <a href=\"#filechanges\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileChanges</h2>\n    <p>A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file <code>additions</code> and zero or more\nfile <code>deletions</code>.</p>\n<p>Both fields are optional; omitting both will produce a commit with no\nfile changes.</p>\n<p><code>deletions</code> and <code>additions</code> describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n<code>/</code>.  The root of a git tree is an empty string, so paths are not\nslash-prefixed.</p>\n<p><code>path</code> values must be unique across all <code>additions</code> and <code>deletions</code>\nprovided.  Any duplication will result in a validation error.</p>\n<h3 id=\"encoding\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#encoding\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Encoding</h3>\n<p>File contents must be provided in full for each <code>FileAddition</code>.</p>\n<p>The <code>contents</code> of a <code>FileAddition</code> must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used.  Invalid base64\nencoding will be rejected with a validation error.</p>\n<p>The encoded contents may be binary.</p>\n<p>For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding).  No charset transcoding or\nline-ending normalization will be performed; it is the client&apos;s\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (<code>\\n</code> or <code>\\r\\n</code>), and that all files end\nwith a newline.</p>\n<h3 id=\"modeling-file-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#modeling-file-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Modeling file changes</h3>\n<p>Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the <code>FileChanges</code> type as follows:</p>\n<ol>\n<li>\n<p>New file addition: create file <code>hello world\\n</code> at path <code>docs/README.txt</code>:</p>\n<p>   {\n&quot;additions&quot; [\n{\n&quot;path&quot;: &quot;docs/README.txt&quot;,\n&quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n}\n]\n}</p>\n</li>\n<li>\n<p>Existing file modification: change existing <code>docs/README.txt</code> to have new\ncontent <code>new content here\\n</code>:</p>\n<pre><code>{\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new content here\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>Existing file deletion: remove existing file <code>docs/README.txt</code>.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with no changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to the same content at\n<code>newdocs/README.txt</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to a file at path\n<code>newdocs/README.txt</code> with content <code>new contents\\n</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new contents\\n&quot;)\n    }\n  ]\n}.\n</code></pre>\n</li>\n</ol>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#fileaddition\">[FileAddition!]</a></code>)</p></td>\n<td><p>File to add or change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#filedeletion\">[FileDeletion!]</a></code>)</p></td>\n<td><p>Files to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filedeletion\">\n      <a href=\"#filedeletion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileDeletion</h2>\n    <p>A command to delete the file at the given path as part of a commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswerinput\">\n      <a href=\"#markdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of MarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to mark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileorder\">\n      <a href=\"#packagefileorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileOrder</h2>\n    <p>Ways in which lists of package files can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package files by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#packagefileorderfield\">PackageFileOrderField</a></code>)</p></td>\n<td><p>The field in which to order package files by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageorder\">\n      <a href=\"#packageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageOrder</h2>\n    <p>Ways in which lists of packages can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order packages by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#packageorderfield\">PackageOrderField</a></code>)</p></td>\n<td><p>The field in which to order packages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionorder\">\n      <a href=\"#packageversionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionOrder</h2>\n    <p>Ways in which lists of package versions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package versions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#packageversionorderfield\">PackageVersionOrderField</a></code>)</p></td>\n<td><p>The field in which to order package versions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintokeninput\">\n      <a href=\"#regenerateverifiabledomaintokeninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateVerifiableDomainTokenInput</h2>\n    <p>Autogenerated input type of RegenerateVerifiableDomainToken.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to regenerate the verification token of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeploymentsinput\">\n      <a href=\"#rejectdeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RejectDeploymentsInput</h2>\n    <p>Autogenerated input type of RejectDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for rejecting deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvoteinput\">\n      <a href=\"#removeupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveUpvoteInput</h2>\n    <p>Autogenerated input type of RemoveUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to remove upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswerinput\">\n      <a href=\"#unmarkdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of UnmarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to unmark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncommentinput\">\n      <a href=\"#updatediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new contents of the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioninput\">\n      <a href=\"#updatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new contents of the discussion body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of a discussion category within the same repository to change this discussion to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new discussion title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the base repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the base repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironmentinput\">\n      <a href=\"#updateenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnvironmentInput</h2>\n    <p>Autogenerated input type of UpdateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The ids of users or teams that can approve deployments to this environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The wait timer in minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsettinginput\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListForInstalledAppsEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list configuration for installed GitHub Apps setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsettinginput\">\n      <a href=\"#updatenotificationrestrictionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateNotificationRestrictionSettingInput</h2>\n    <p>Autogenerated input type of UpdateNotificationRestrictionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>The value for the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainorder\">\n      <a href=\"#verifiabledomainorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainOrder</h2>\n    <p>Ordering options for verifiable domain connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#verifiabledomainorderfield\">VerifiableDomainOrderField!</a></code>)</p></td>\n<td><p>The field to order verifiable domains by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomaininput\">\n      <a href=\"#verifyverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifyVerifiableDomainInput</h2>\n    <p>Autogenerated input type of VerifyVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to verify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstarinput\">\n      AddStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstarinput\">\n      AddStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitauthor\">\n      CommitAuthor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitauthor\">\n      CommitAuthor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitmessage\">\n      CommitMessage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitmessage\">\n      CommitMessage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#committablebranch\">\n      CommittableBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#committablebranch\">\n      CommittableBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionorder\">\n      ContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionorder\">\n      ContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcontentattachmentinput\">\n      CreateContentAttachmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcontentattachmentinput\">\n      CreateContentAttachmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrefinput\">\n      CreateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrefinput\">\n      CreateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#fileaddition\">\n      FileAddition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#fileaddition\">\n      FileAddition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filechanges\">\n      FileChanges</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filechanges\">\n      FileChanges</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filedeletion\">\n      FileDeletion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filedeletion\">\n      FileDeletion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuserinput\">\n      FollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuserinput\">\n      FollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistorder\">\n      GistOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistorder\">\n      GistOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuefilters\">\n      IssueFilters</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuefilters\">\n      IssueFilters</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueorder\">\n      IssueOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueorder\">\n      IssueOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelorder\">\n      LabelOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelorder\">\n      LabelOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageorder\">\n      LanguageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageorder\">\n      LanguageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageorder\">\n      PackageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageorder\">\n      PackageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectorder\">\n      ProjectOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectorder\">\n      ProjectOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionorder\">\n      ReactionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionorder\">\n      ReactionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reforder\">\n      RefOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reforder\">\n      RefOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdate\">\n      RefUpdate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdate\">\n      RefUpdate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starorder\">\n      StarOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starorder\">\n      StarOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamorder\">\n      TeamOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamorder\">\n      TeamOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -6407,1400 +6407,1400 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncommentinput\">\n      <a href=\"#adddiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddDiscussionCommentInput</h2>\n    <p>Autogenerated input type of AddDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyToId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment within this discussion to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmininput\">\n      <a href=\"#addenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of AddEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise account to which the administrator should be added.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to add as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvoteinput\">\n      <a href=\"#addupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddUpvoteInput</h2>\n    <p>Autogenerated input type of AddUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomaininput\">\n      <a href=\"#addverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddVerifiableDomainInput</h2>\n    <p>Autogenerated input type of AddVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner to add the domain to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeploymentsinput\">\n      <a href=\"#approvedeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveDeploymentsInput</h2>\n    <p>Autogenerated input type of ApproveDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for approving deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomaininput\">\n      <a href=\"#approveverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveVerifiableDomainInput</h2>\n    <p>Autogenerated input type of ApproveVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to approve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraftinput\">\n      <a href=\"#convertpullrequesttodraftinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertPullRequestToDraftInput</h2>\n    <p>Autogenerated input type of ConvertPullRequestToDraft.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to convert to draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcontentattachmentinput\">\n      <a href=\"#createcontentattachmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateContentAttachmentInput</h2>\n    <p>Autogenerated input type of CreateContentAttachment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the content attachment, which may contain markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentReferenceId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the content_reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the content attachment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussioninput\">\n      <a href=\"#creatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDiscussionInput</h2>\n    <p>Autogenerated input type of CreateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion category to associate with this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the repository on which to create the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironmentinput\">\n      <a href=\"#createenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnvironmentInput</h2>\n    <p>Autogenerated input type of CreateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncommentinput\">\n      <a href=\"#deletediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node id of the discussion comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioninput\">\n      <a href=\"#deletediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironmentinput\">\n      <a href=\"#deleteenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteEnvironmentInput</h2>\n    <p>Autogenerated input type of DeleteEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the environment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversioninput\">\n      <a href=\"#deletepackageversioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePackageVersionInput</h2>\n    <p>Autogenerated input type of DeletePackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersionId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the package version to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomaininput\">\n      <a href=\"#deleteverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteVerifiableDomainInput</h2>\n    <p>Autogenerated input type of DeleteVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionorder\">\n      <a href=\"#discussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionOrder</h2>\n    <p>Ways in which lists of discussions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order discussions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#discussionorderfield\">DiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswerinput\">\n      <a href=\"#markdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of MarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to mark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileorder\">\n      <a href=\"#packagefileorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileOrder</h2>\n    <p>Ways in which lists of package files can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package files by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#packagefileorderfield\">PackageFileOrderField</a></code>)</p></td>\n<td><p>The field in which to order package files by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageorder\">\n      <a href=\"#packageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageOrder</h2>\n    <p>Ways in which lists of packages can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order packages by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#packageorderfield\">PackageOrderField</a></code>)</p></td>\n<td><p>The field in which to order packages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionorder\">\n      <a href=\"#packageversionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionOrder</h2>\n    <p>Ways in which lists of package versions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package versions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#packageversionorderfield\">PackageVersionOrderField</a></code>)</p></td>\n<td><p>The field in which to order package versions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintokeninput\">\n      <a href=\"#regenerateverifiabledomaintokeninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RegenerateVerifiableDomainTokenInput</h2>\n    <p>Autogenerated input type of RegenerateVerifiableDomainToken.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to regenerate the verification token of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeploymentsinput\">\n      <a href=\"#rejectdeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RejectDeploymentsInput</h2>\n    <p>Autogenerated input type of RejectDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for rejecting deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvoteinput\">\n      <a href=\"#removeupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveUpvoteInput</h2>\n    <p>Autogenerated input type of RemoveUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to remove upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshiporder\">\n      <a href=\"#sponsorshiporder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipOrder</h2>\n    <p>Ordering options for sponsorship connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswerinput\">\n      <a href=\"#unmarkdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of UnmarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to unmark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncommentinput\">\n      <a href=\"#updatediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new contents of the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioninput\">\n      <a href=\"#updatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new contents of the discussion body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of a discussion category within the same repository to change this discussion to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new discussion title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the base repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the base repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironmentinput\">\n      <a href=\"#updateenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnvironmentInput</h2>\n    <p>Autogenerated input type of UpdateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The ids of users or teams that can approve deployments to this environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The wait timer in minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsettinginput\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListForInstalledAppsEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list configuration for installed GitHub Apps setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsettinginput\">\n      <a href=\"#updatenotificationrestrictionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateNotificationRestrictionSettingInput</h2>\n    <p>Autogenerated input type of UpdateNotificationRestrictionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>The value for the restrict notifications setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainorder\">\n      <a href=\"#verifiabledomainorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainOrder</h2>\n    <p>Ordering options for verifiable domain connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#verifiabledomainorderfield\">VerifiableDomainOrderField!</a></code>)</p></td>\n<td><p>The field to order verifiable domains by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomaininput\">\n      <a href=\"#verifyverifiabledomaininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifyVerifiableDomainInput</h2>\n    <p>Autogenerated input type of VerifyVerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the verifiable domain to verify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstarinput\">\n      AddStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstarinput\">\n      AddStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomaininput\">\n      AddVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomaininput\">\n      ApproveVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitauthor\">\n      CommitAuthor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitauthor\">\n      CommitAuthor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionorder\">\n      ContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionorder\">\n      ContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcontentattachmentinput\">\n      CreateContentAttachmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcontentattachmentinput\">\n      CreateContentAttachmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrefinput\">\n      CreateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrefinput\">\n      CreateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomaininput\">\n      DeleteVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuserinput\">\n      FollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuserinput\">\n      FollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistorder\">\n      GistOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistorder\">\n      GistOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuefilters\">\n      IssueFilters</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuefilters\">\n      IssueFilters</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueorder\">\n      IssueOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueorder\">\n      IssueOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelorder\">\n      LabelOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelorder\">\n      LabelOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageorder\">\n      LanguageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageorder\">\n      LanguageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageorder\">\n      PackageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageorder\">\n      PackageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectorder\">\n      ProjectOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectorder\">\n      ProjectOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionorder\">\n      ReactionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionorder\">\n      ReactionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reforder\">\n      RefOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reforder\">\n      RefOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdate\">\n      RefUpdate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdate\">\n      RefUpdate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintokeninput\">\n      RegenerateVerifiableDomainTokenInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starorder\">\n      StarOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starorder\">\n      StarOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamorder\">\n      TeamOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamorder\">\n      TeamOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsettinginput\">\n      UpdateNotificationRestrictionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainorder\">\n      VerifiableDomainOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomaininput\">\n      VerifyVerifiableDomainInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -7812,1225 +7812,1225 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmininput\">\n      <a href=\"#addenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of AddEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise account to which the administrator should be added.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to add as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcontentattachmentinput\">\n      <a href=\"#createcontentattachmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateContentAttachmentInput</h2>\n    <p>Autogenerated input type of CreateContentAttachment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the content attachment, which may contain markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentReferenceId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the content_reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the content attachment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversioninput\">\n      <a href=\"#deletepackageversioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePackageVersionInput</h2>\n    <p>Autogenerated input type of DeletePackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersionId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the package version to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileorder\">\n      <a href=\"#packagefileorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileOrder</h2>\n    <p>Ways in which lists of package files can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package files by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#packagefileorderfield\">PackageFileOrderField</a></code>)</p></td>\n<td><p>The field in which to order package files by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageorder\">\n      <a href=\"#packageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageOrder</h2>\n    <p>Ways in which lists of packages can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order packages by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#packageorderfield\">PackageOrderField</a></code>)</p></td>\n<td><p>The field in which to order packages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionorder\">\n      <a href=\"#packageversionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionOrder</h2>\n    <p>Ways in which lists of package versions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package versions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#packageversionorderfield\">PackageVersionOrderField</a></code>)</p></td>\n<td><p>The field in which to order package versions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshiporder\">\n      <a href=\"#sponsorshiporder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipOrder</h2>\n    <p>Ordering options for sponsorship connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the default repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the default repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstarinput\">\n      AddStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstarinput\">\n      AddStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitauthor\">\n      CommitAuthor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitauthor\">\n      CommitAuthor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionorder\">\n      ContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionorder\">\n      ContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcontentattachmentinput\">\n      CreateContentAttachmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcontentattachmentinput\">\n      CreateContentAttachmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrefinput\">\n      CreateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrefinput\">\n      CreateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuserinput\">\n      FollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuserinput\">\n      FollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistorder\">\n      GistOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistorder\">\n      GistOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuefilters\">\n      IssueFilters</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuefilters\">\n      IssueFilters</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueorder\">\n      IssueOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueorder\">\n      IssueOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelorder\">\n      LabelOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelorder\">\n      LabelOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageorder\">\n      LanguageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageorder\">\n      LanguageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageorder\">\n      PackageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageorder\">\n      PackageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectorder\">\n      ProjectOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectorder\">\n      ProjectOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionorder\">\n      ReactionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionorder\">\n      ReactionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reforder\">\n      RefOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reforder\">\n      RefOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdate\">\n      RefUpdate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdate\">\n      RefUpdate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starorder\">\n      StarOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starorder\">\n      StarOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamorder\">\n      TeamOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamorder\">\n      TeamOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -9042,1204 +9042,1204 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmininput\">\n      <a href=\"#addenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of AddEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise account to which the administrator should be added.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to add as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcontentattachmentinput\">\n      <a href=\"#createcontentattachmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateContentAttachmentInput</h2>\n    <p>Autogenerated input type of CreateContentAttachment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the content attachment, which may contain markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentReferenceId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the content_reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the content attachment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visiblity of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversioninput\">\n      <a href=\"#deletepackageversioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePackageVersionInput</h2>\n    <p>Autogenerated input type of DeletePackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersionId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the package version to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileorder\">\n      <a href=\"#packagefileorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileOrder</h2>\n    <p>Ways in which lists of package files can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package files by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#packagefileorderfield\">PackageFileOrderField</a></code>)</p></td>\n<td><p>The field in which to order package files by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageorder\">\n      <a href=\"#packageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageOrder</h2>\n    <p>Ways in which lists of packages can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order packages by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#packageorderfield\">PackageOrderField</a></code>)</p></td>\n<td><p>The field in which to order packages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionorder\">\n      <a href=\"#packageversionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionOrder</h2>\n    <p>Ways in which lists of package versions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The direction in which to order package versions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#packageversionorderfield\">PackageVersionOrderField</a></code>)</p></td>\n<td><p>The field in which to order package versions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshiporder\">\n      <a href=\"#sponsorshiporder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipOrder</h2>\n    <p>Ordering options for sponsorship connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the default repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the default repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assginments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstarinput\">\n      AddStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstarinput\">\n      AddStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitauthor\">\n      CommitAuthor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitauthor\">\n      CommitAuthor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionorder\">\n      ContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionorder\">\n      ContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcontentattachmentinput\">\n      CreateContentAttachmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcontentattachmentinput\">\n      CreateContentAttachmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrefinput\">\n      CreateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrefinput\">\n      CreateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversioninput\">\n      DeletePackageVersionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuserinput\">\n      FollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuserinput\">\n      FollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistorder\">\n      GistOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistorder\">\n      GistOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuefilters\">\n      IssueFilters</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuefilters\">\n      IssueFilters</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueorder\">\n      IssueOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueorder\">\n      IssueOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelorder\">\n      LabelOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelorder\">\n      LabelOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageorder\">\n      LanguageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageorder\">\n      LanguageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileorder\">\n      PackageFileOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageorder\">\n      PackageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageorder\">\n      PackageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionorder\">\n      PackageVersionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectorder\">\n      ProjectOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectorder\">\n      ProjectOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionorder\">\n      ReactionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionorder\">\n      ReactionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reforder\">\n      RefOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reforder\">\n      RefOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdate\">\n      RefUpdate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdate\">\n      RefUpdate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshiporder\">\n      SponsorshipOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starorder\">\n      StarOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starorder\">\n      StarOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamorder\">\n      TeamOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamorder\">\n      TeamOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -10248,1452 +10248,1452 @@
     ]
   },
   "ghae": {
-    "html": "<div>\n  <div>\n    <h2 id=\"abortqueuedmigrationsinput\">\n      <a href=\"#abortqueuedmigrationsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AbortQueuedMigrationsInput</h2>\n    <p>Autogenerated input type of AbortQueuedMigrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that is running the migrations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncommentinput\">\n      <a href=\"#adddiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddDiscussionCommentInput</h2>\n    <p>Autogenerated input type of AddDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyToId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment within this discussion to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmininput\">\n      <a href=\"#addenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of AddEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise account to which the administrator should be added.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to add as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvoteinput\">\n      <a href=\"#addupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddUpvoteInput</h2>\n    <p>Autogenerated input type of AddUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeploymentsinput\">\n      <a href=\"#approvedeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveDeploymentsInput</h2>\n    <p>Autogenerated input type of ApproveDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for approving deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitmessage\">\n      <a href=\"#commitmessage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitMessage</h2>\n    <p>A message to include with a new commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The headline of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"committablebranch\">\n      <a href=\"#committablebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommittableBranch</h2>\n    <p>A git ref for a commit to be appended to.</p>\n<p>The ref must be a branch, i.e. its fully qualified name must start\nwith <code>refs/heads/</code> (although the input is not required to be fully\nqualified).</p>\n<p>The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.</p>\n<h3 id=\"examples\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#examples\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Examples</h3>\n<p>Specify a branch using a global node ID:</p>\n<pre><code>{ &quot;id&quot;: &quot;MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=&quot; }\n</code></pre>\n<p>Specify a branch using nameWithOwner and branch name:</p>\n<pre><code>{\n  &quot;nameWithOwner&quot;: &quot;github/graphql-client&quot;,\n  &quot;branchName&quot;: &quot;main&quot;\n}.\n</code></pre>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The unqualified name of the branch to append the commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryNameWithOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The nameWithOwner of the repository to commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraftinput\">\n      <a href=\"#convertpullrequesttodraftinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertPullRequestToDraftInput</h2>\n    <p>Autogenerated input type of ConvertPullRequestToDraft.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to convert to draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranchinput\">\n      <a href=\"#createcommitonbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCommitOnBranchInput</h2>\n    <p>Autogenerated input type of CreateCommitOnBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#committablebranch\">CommittableBranch!</a></code>)</p></td>\n<td><p>The Ref to be updated.  Must be a branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The git commit oid expected at the head of the branch prior to the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fileChanges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#filechanges\">FileChanges</a></code>)</p></td>\n<td><p>A description of changes to files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#commitmessage\">CommitMessage!</a></code>)</p></td>\n<td><p>The commit message the be included with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussioninput\">\n      <a href=\"#creatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDiscussionInput</h2>\n    <p>Autogenerated input type of CreateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion category to associate with this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the repository on which to create the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironmentinput\">\n      <a href=\"#createenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnvironmentInput</h2>\n    <p>Autogenerated input type of CreateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createmigrationsourceinput\">\n      <a href=\"#createmigrationsourceinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateMigrationSourceInput</h2>\n    <p>Autogenerated input type of CreateMigrationSource.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessToken</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source access token.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>githubPat</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The GitHub personal access token of the user importing to the target repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncommentinput\">\n      <a href=\"#deletediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node id of the discussion comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioninput\">\n      <a href=\"#deletediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironmentinput\">\n      <a href=\"#deleteenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteEnvironmentInput</h2>\n    <p>Autogenerated input type of DeleteEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the environment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionorder\">\n      <a href=\"#discussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionOrder</h2>\n    <p>Ways in which lists of discussions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order discussions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#discussionorderfield\">DiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalertinput\">\n      <a href=\"#dismissrepositoryvulnerabilityalertinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissRepositoryVulnerabilityAlertInput</h2>\n    <p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#dismissreason\">DismissReason!</a></code>)</p></td>\n<td><p>The reason the Dependabot alert is being dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlertId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Dependabot alert ID to dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fileaddition\">\n      <a href=\"#fileaddition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileAddition</h2>\n    <p>A command to add a file at the given path with the given contents as part of a\ncommit.  Any existing file at that that path will be replaced.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contents</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#base64string\">Base64String!</a></code>)</p></td>\n<td><p>The base64 encoded contents of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the repository where the file will be located.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filechanges\">\n      <a href=\"#filechanges\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileChanges</h2>\n    <p>A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file <code>additions</code> and zero or more\nfile <code>deletions</code>.</p>\n<p>Both fields are optional; omitting both will produce a commit with no\nfile changes.</p>\n<p><code>deletions</code> and <code>additions</code> describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n<code>/</code>.  The root of a git tree is an empty string, so paths are not\nslash-prefixed.</p>\n<p><code>path</code> values must be unique across all <code>additions</code> and <code>deletions</code>\nprovided.  Any duplication will result in a validation error.</p>\n<h3 id=\"encoding\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#encoding\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Encoding</h3>\n<p>File contents must be provided in full for each <code>FileAddition</code>.</p>\n<p>The <code>contents</code> of a <code>FileAddition</code> must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used.  Invalid base64\nencoding will be rejected with a validation error.</p>\n<p>The encoded contents may be binary.</p>\n<p>For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding).  No charset transcoding or\nline-ending normalization will be performed; it is the client&apos;s\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (<code>\\n</code> or <code>\\r\\n</code>), and that all files end\nwith a newline.</p>\n<h3 id=\"modeling-file-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#modeling-file-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Modeling file changes</h3>\n<p>Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the <code>FileChanges</code> type as follows:</p>\n<ol>\n<li>\n<p>New file addition: create file <code>hello world\\n</code> at path <code>docs/README.txt</code>:</p>\n<p>   {\n&quot;additions&quot; [\n{\n&quot;path&quot;: &quot;docs/README.txt&quot;,\n&quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n}\n]\n}</p>\n</li>\n<li>\n<p>Existing file modification: change existing <code>docs/README.txt</code> to have new\ncontent <code>new content here\\n</code>:</p>\n<pre><code>{\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new content here\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>Existing file deletion: remove existing file <code>docs/README.txt</code>.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with no changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to the same content at\n<code>newdocs/README.txt</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to a file at path\n<code>newdocs/README.txt</code> with content <code>new contents\\n</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new contents\\n&quot;)\n    }\n  ]\n}.\n</code></pre>\n</li>\n</ol>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#fileaddition\">[FileAddition!]</a></code>)</p></td>\n<td><p>File to add or change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#filedeletion\">[FileDeletion!]</a></code>)</p></td>\n<td><p>Files to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filedeletion\">\n      <a href=\"#filedeletion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileDeletion</h2>\n    <p>A command to delete the file at the given path as part of a commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#grantenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantmigratorroleinput\">\n      <a href=\"#grantmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its database ID. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneNumber</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswerinput\">\n      <a href=\"#markdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of MarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to mark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenterpriseownerorder\">\n      <a href=\"#orgenterpriseownerorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnterpriseOwnerOrder</h2>\n    <p>Ordering options for an organization&apos;s enterprise owner connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgenterpriseownerorderfield\">OrgEnterpriseOwnerOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise owners by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeploymentsinput\">\n      <a href=\"#rejectdeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RejectDeploymentsInput</h2>\n    <p>Autogenerated input type of RejectDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for rejecting deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvoteinput\">\n      <a href=\"#removeupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveUpvoteInput</h2>\n    <p>Autogenerated input type of RemoveUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to remove upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationorder\">\n      <a href=\"#repositorymigrationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationOrder</h2>\n    <p>Ordering options for repository migrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorymigrationorderdirection\">RepositoryMigrationOrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorymigrationorderfield\">RepositoryMigrationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository migrations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckinput\">\n      <a href=\"#requiredstatuscheckinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckInput</h2>\n    <p>Specifies the attributes for a new or updated required status check.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse &quot;any&quot; to allow any app to set the status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Status check context that must pass for commits to be accepted to the matching branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokeenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#revokeenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to revoke the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokemigratorroleinput\">\n      <a href=\"#revokemigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to revoke the migrator role from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"startrepositorymigrationinput\">\n      <a href=\"#startrepositorymigrationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StartRepositoryMigrationInput</h2>\n    <p>Autogenerated input type of StartRepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to continue the migration on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitArchiveUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded git archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>metadataArchiveUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded metadata archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceRepositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source repository URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswerinput\">\n      <a href=\"#unmarkdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of UnmarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to unmark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncommentinput\">\n      <a href=\"#updatediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new contents of the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioninput\">\n      <a href=\"#updatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new contents of the discussion body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of a discussion category within the same repository to change this discussion to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new discussion title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the base repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the base repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseownerorganizationroleinput\">\n      <a href=\"#updateenterpriseownerorganizationroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOwnerOrganizationRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the owner belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization for membership change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role to assume in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironmentinput\">\n      <a href=\"#updateenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnvironmentInput</h2>\n    <p>Autogenerated input type of UpdateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The ids of users or teams that can approve deployments to this environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The wait timer in minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsettinginput\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListForInstalledAppsEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list configuration for installed GitHub Apps setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Enable forking of private repositories in the organization?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranchinput\">\n      <a href=\"#updatepullrequestbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestBranchInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The head ref oid for the upstream branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
+    "html": "<div>\n  <div>\n    <h2 id=\"abortqueuedmigrationsinput\">\n      <a href=\"#abortqueuedmigrationsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AbortQueuedMigrationsInput</h2>\n    <p>Autogenerated input type of AbortQueuedMigrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that is running the migrations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addassigneestoassignableinput\">\n      <a href=\"#addassigneestoassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddAssigneesToAssignableInput</h2>\n    <p>Autogenerated input type of AddAssigneesToAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to add assignees to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to add as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcommentinput\">\n      <a href=\"#addcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddCommentInput</h2>\n    <p>Autogenerated input type of AddComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncommentinput\">\n      <a href=\"#adddiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddDiscussionCommentInput</h2>\n    <p>Autogenerated input type of AddDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyToId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment within this discussion to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmininput\">\n      <a href=\"#addenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of AddEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise account to which the administrator should be added.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to add as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelableinput\">\n      <a href=\"#addlabelstolabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddLabelsToLabelableInput</h2>\n    <p>Autogenerated input type of AddLabelsToLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of the labels to add.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to add labels to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcardinput\">\n      <a href=\"#addprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectCardInput</h2>\n    <p>Autogenerated input type of AddProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The content of the card. Must be a member of the ProjectCardItem union.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note on the card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the ProjectColumn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumninput\">\n      <a href=\"#addprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddProjectColumnInput</h2>\n    <p>Autogenerated input type of AddProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcommentinput\">\n      <a href=\"#addpullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA of the commit to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inReplyTo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The comment id to reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The relative path of the file to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewinput\">\n      <a href=\"#addpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewInput</h2>\n    <p>Autogenerated input type of AddPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the review body comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#draftpullrequestreviewcomment\">[DraftPullRequestReviewComment]</a></code>)</p></td>\n<td><p>The review line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOID</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit OID the review pertains to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent</a></code>)</p></td>\n<td><p>The event to perform on the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threads</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#draftpullrequestreviewthread\">[DraftPullRequestReviewThread]</a></code>)</p></td>\n<td><p>The review line comment threads.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthreadinput\">\n      <a href=\"#addpullrequestreviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddPullRequestReviewThreadInput</h2>\n    <p>Autogenerated input type of AddPullRequestReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the thread&apos;s first comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The node ID of the pull request reviewing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreactioninput\">\n      <a href=\"#addreactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddReactionInput</h2>\n    <p>Autogenerated input type of AddReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji to react with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstarinput\">\n      <a href=\"#addstarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddStarInput</h2>\n    <p>Autogenerated input type of AddStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to star.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvoteinput\">\n      <a href=\"#addupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddUpvoteInput</h2>\n    <p>Autogenerated input type of AddUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeploymentsinput\">\n      <a href=\"#approvedeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ApproveDeploymentsInput</h2>\n    <p>Autogenerated input type of ApproveDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for approving deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepositoryinput\">\n      <a href=\"#archiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ArchiveRepositoryInput</h2>\n    <p>Autogenerated input type of ArchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to mark as archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"auditlogorder\">\n      <a href=\"#auditlogorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AuditLogOrder</h2>\n    <p>Ordering options for Audit Log connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#auditlogorderfield\">AuditLogOrderField</a></code>)</p></td>\n<td><p>The field to order Audit Logs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatusinput\">\n      <a href=\"#changeuserstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ChangeUserStatusInput</h2>\n    <p>Autogenerated input type of ChangeUserStatus.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., &#x1F600;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the user status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitedAvailability</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this status should indicate you are not fully available on GitHub, e.g., you are away.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of your current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationdata\">\n      <a href=\"#checkannotationdata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationData</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel!</a></code>)</p></td>\n<td><p>Represents an annotation&apos;s information level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkannotationrange\">CheckAnnotationRange!</a></code>)</p></td>\n<td><p>The location of the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short description of the feedback for these lines of code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to add an annotation to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Details about this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title that represents the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationrange\">\n      <a href=\"#checkannotationrange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationRange</h2>\n    <p>Information from a check run analysis to specific lines of code.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endColumn</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The ending column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startColumn</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The starting column of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line of the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunaction\">\n      <a href=\"#checkrunaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunAction</h2>\n    <p>Possible further actions the integrator can perform.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short explanation of what this action would do.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A reference for the action on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text to be displayed on a button in the web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunfilter\">\n      <a href=\"#checkrunfilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunFilter</h2>\n    <p>The filters that are available when fetching check runs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check runs created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check runs by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkruntype\">CheckRunType</a></code>)</p></td>\n<td><p>Filters the check runs by this type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState</a></code>)</p></td>\n<td><p>Filters the check runs by this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutput\">\n      <a href=\"#checkrunoutput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutput</h2>\n    <p>Descriptive details about the check run.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkannotationdata\">[CheckAnnotationData!]</a></code>)</p></td>\n<td><p>The annotations that are made as part of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>images</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunoutputimage\">[CheckRunOutputImage!]</a></code>)</p></td>\n<td><p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The summary of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The details of the check run (supports Commonmark).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A title to provide for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunoutputimage\">\n      <a href=\"#checkrunoutputimage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunOutputImage</h2>\n    <p>Images attached to the check run output displayed in the GitHub pull request UI.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>alt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The alternative text for the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>caption</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short image description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>imageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The full URL of the image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteautotriggerpreference\">\n      <a href=\"#checksuiteautotriggerpreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteAutoTriggerPreference</h2>\n    <p>The auto-trigger preferences that are available for check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the application that owns the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>setting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Set to <code>true</code> to enable automatic creation of CheckSuite events upon pushes to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuitefilter\">\n      <a href=\"#checksuitefilter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteFilter</h2>\n    <p>The filters that are available when fetching check suites.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Filters the check suites created by this application ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Filters the check suites by this name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelableinput\">\n      <a href=\"#clearlabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClearLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of ClearLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the labelable object to clear the labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneprojectinput\">\n      <a href=\"#cloneprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneProjectInput</h2>\n    <p>Autogenerated input type of CloneProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeWorkflows</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not to clone the source project&apos;s workflows.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The visibility of the project, defaults to false (private).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The source project to clone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetOwnerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepositoryinput\">\n      <a href=\"#clonetemplaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloneTemplateRepositoryInput</h2>\n    <p>Autogenerated input type of CloneTemplateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includeAllBranches</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the template repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissueinput\">\n      <a href=\"#closeissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CloseIssueInput</h2>\n    <p>Autogenerated input type of CloseIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequestinput\">\n      <a href=\"#closepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosePullRequestInput</h2>\n    <p>Autogenerated input type of ClosePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitauthor\">\n      <a href=\"#commitauthor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitAuthor</h2>\n    <p>Specifies an author for filtering Git commits.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionorder\">\n      <a href=\"#commitcontributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionOrder</h2>\n    <p>Ordering options for commit contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commitcontributionorderfield\">CommitContributionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order commit contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitmessage\">\n      <a href=\"#commitmessage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitMessage</h2>\n    <p>A message to include with a new commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The headline of the message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"committablebranch\">\n      <a href=\"#committablebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommittableBranch</h2>\n    <p>A git ref for a commit to be appended to.</p>\n<p>The ref must be a branch, i.e. its fully qualified name must start\nwith <code>refs/heads/</code> (although the input is not required to be fully\nqualified).</p>\n<p>The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.</p>\n<h3 id=\"examples\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#examples\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Examples</h3>\n<p>Specify a branch using a global node ID:</p>\n<pre><code>{ &quot;id&quot;: &quot;MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=&quot; }\n</code></pre>\n<p>Specify a branch using nameWithOwner and branch name:</p>\n<pre><code>{\n  &quot;nameWithOwner&quot;: &quot;github/graphql-client&quot;,\n  &quot;branchName&quot;: &quot;main&quot;\n}.\n</code></pre>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The unqualified name of the branch to append the commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryNameWithOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The nameWithOwner of the repository to commit to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionorder\">\n      <a href=\"#contributionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionOrder</h2>\n    <p>Ordering options for contribution connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissueinput\">\n      <a href=\"#convertprojectcardnotetoissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertProjectCardNoteToIssueInput</h2>\n    <p>Autogenerated input type of ConvertProjectCardNoteToIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the newly created issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to convert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to create the issue in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the newly created issue. Defaults to the card&apos;s note text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraftinput\">\n      <a href=\"#convertpullrequesttodraftinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertPullRequestToDraftInput</h2>\n    <p>Autogenerated input type of ConvertPullRequestToDraft.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to convert to draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionruleinput\">\n      <a href=\"#createbranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of CreateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the repository in which a new branch protection rule should be created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckruninput\">\n      <a href=\"#createcheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckRunInput</h2>\n    <p>Autogenerated input type of CreateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuiteinput\">\n      <a href=\"#createchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCheckSuiteInput</h2>\n    <p>Autogenerated input type of CreateCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The SHA of the head commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranchinput\">\n      <a href=\"#createcommitonbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateCommitOnBranchInput</h2>\n    <p>Autogenerated input type of CreateCommitOnBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#committablebranch\">CommittableBranch!</a></code>)</p></td>\n<td><p>The Ref to be updated.  Must be a branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The git commit oid expected at the head of the branch prior to the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fileChanges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#filechanges\">FileChanges</a></code>)</p></td>\n<td><p>A description of changes to files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#commitmessage\">CommitMessage!</a></code>)</p></td>\n<td><p>The commit message the be included with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentinput\">\n      <a href=\"#createdeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentInput</h2>\n    <p>Autogenerated input type of CreateDeployment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Attempt to automatically merge the default branch into the requested ref, defaults to true.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Name for the target deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>JSON payload with extra information about the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the ref to be deployed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Specifies a task to execute.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatusinput\">\n      <a href=\"#createdeploymentstatusinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDeploymentStatusInput</h2>\n    <p>Autogenerated input type of CreateDeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateDeploymentStatusInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoInactive</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus&apos;s deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the status. Maximum length of 140 characters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>If provided, updates the environment of the deploy. Otherwise, does not modify the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Sets the URL for accessing your environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The log URL to associate with this status.       This URL should contain\noutput to keep the user updated while the task is running       or serve as\nhistorical information for what happened in the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>The state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussioninput\">\n      <a href=\"#creatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateDiscussionInput</h2>\n    <p>Autogenerated input type of CreateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion category to associate with this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the repository on which to create the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganizationinput\">\n      <a href=\"#createenterpriseorganizationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnterpriseOrganizationInput</h2>\n    <p>Autogenerated input type of CreateEnterpriseOrganization.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminLogins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>The logins for the administrators of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email used for sending billing receipts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise owning the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The profile name of the new organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironmentinput\">\n      <a href=\"#createenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateEnvironmentInput</h2>\n    <p>Autogenerated input type of CreateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentryinput\">\n      <a href=\"#createipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of CreateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner for which to create the new IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissueinput\">\n      <a href=\"#createissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateIssueInput</h2>\n    <p>Autogenerated input type of CreateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node ID for the user assignee for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of an issue template in the repository, assigns labels and assignees from the template to the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabelinput\">\n      <a href=\"#createlabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateLabelInput</h2>\n    <p>Autogenerated input type of CreateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>CreateLabelInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createmigrationsourceinput\">\n      <a href=\"#createmigrationsourceinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateMigrationSourceInput</h2>\n    <p>Autogenerated input type of CreateMigrationSource.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessToken</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source access token.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>githubPat</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The GitHub personal access token of the user importing to the target repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createprojectinput\">\n      <a href=\"#createprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateProjectInput</h2>\n    <p>Autogenerated input type of CreateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The owner ID to create the project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of repository IDs to create as linked repositories for the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projecttemplate\">ProjectTemplate</a></code>)</p></td>\n<td><p>The name of the GitHub-provided template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequestinput\">\n      <a href=\"#createpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatePullRequestInput</h2>\n    <p>Autogenerated input type of CreatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draft</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether this pull request should be a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace <code>head_ref_name</code> with a user like this: <code>username:branch</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrefinput\">\n      <a href=\"#createrefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRefInput</h2>\n    <p>Autogenerated input type of CreateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fully qualified name of the new Ref (ie: <code>refs/heads/my_new_branch</code>).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the new Ref shall target. Must point to a commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository to create the Ref in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepositoryinput\">\n      <a href=\"#createrepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateRepositoryInput</h2>\n    <p>Autogenerated input type of CreateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A short description of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the owner for the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncommentinput\">\n      <a href=\"#createteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the discussion to which the comment belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioninput\">\n      <a href=\"#createteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of CreateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>private</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the team to which the discussion belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionruleinput\">\n      <a href=\"#deletebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of DeleteBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeploymentinput\">\n      <a href=\"#deletedeploymentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDeploymentInput</h2>\n    <p>Autogenerated input type of DeleteDeployment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the deployment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncommentinput\">\n      <a href=\"#deletediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node id of the discussion comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioninput\">\n      <a href=\"#deletediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the discussion to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironmentinput\">\n      <a href=\"#deleteenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteEnvironmentInput</h2>\n    <p>Autogenerated input type of DeleteEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the environment to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentryinput\">\n      <a href=\"#deleteipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of DeleteIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecommentinput\">\n      <a href=\"#deleteissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueCommentInput</h2>\n    <p>Autogenerated input type of DeleteIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissueinput\">\n      <a href=\"#deleteissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteIssueInput</h2>\n    <p>Autogenerated input type of DeleteIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabelinput\">\n      <a href=\"#deletelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteLabelInput</h2>\n    <p>Autogenerated input type of DeleteLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DeleteLabelInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcardinput\">\n      <a href=\"#deleteprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectCardInput</h2>\n    <p>Autogenerated input type of DeleteProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumninput\">\n      <a href=\"#deleteprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectColumnInput</h2>\n    <p>Autogenerated input type of DeleteProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectinput\">\n      <a href=\"#deleteprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteProjectInput</h2>\n    <p>Autogenerated input type of DeleteProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcommentinput\">\n      <a href=\"#deletepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewinput\">\n      <a href=\"#deletepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeletePullRequestReviewInput</h2>\n    <p>Autogenerated input type of DeletePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleterefinput\">\n      <a href=\"#deleterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteRefInput</h2>\n    <p>Autogenerated input type of DeleteRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncommentinput\">\n      <a href=\"#deleteteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioninput\">\n      <a href=\"#deleteteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeleteTeamDiscussionInput</h2>\n    <p>Autogenerated input type of DeleteTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The discussion ID to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentorder\">\n      <a href=\"#deploymentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentOrder</h2>\n    <p>Ordering options for deployment connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentorderfield\">DeploymentOrderField!</a></code>)</p></td>\n<td><p>The field to order deployments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomergeinput\">\n      <a href=\"#disablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of DisablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to disable auto merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionorder\">\n      <a href=\"#discussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionOrder</h2>\n    <p>Ways in which lists of discussions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order discussions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#discussionorderfield\">DiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreviewinput\">\n      <a href=\"#dismisspullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissPullRequestReviewInput</h2>\n    <p>Autogenerated input type of DismissPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review dismissal message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalertinput\">\n      <a href=\"#dismissrepositoryvulnerabilityalertinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DismissRepositoryVulnerabilityAlertInput</h2>\n    <p>Autogenerated input type of DismissRepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#dismissreason\">DismissReason!</a></code>)</p></td>\n<td><p>The reason the Dependabot alert is being dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlertId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Dependabot alert ID to dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewcomment\">\n      <a href=\"#draftpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewComment</h2>\n    <p>Specifies a review comment to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Position in the file to leave a comment on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"draftpullrequestreviewthread\">\n      <a href=\"#draftpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DraftPullRequestReviewThread</h2>\n    <p>Specifies a review comment thread to be left with a Pull Request Review.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Body of the comment to leave.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to the file being commented on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>side</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The first line of the range to which the comment refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startSide</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff on which the start line resides.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomergeinput\">\n      <a href=\"#enablepullrequestautomergeinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnablePullRequestAutoMergeInput</h2>\n    <p>Autogenerated input type of EnablePullRequestAutoMerge.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to enable auto-merge on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationorder\">\n      <a href=\"#enterpriseadministratorinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationOrder</h2>\n    <p>Ordering options for enterprise administrator invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorinvitationorderfield\">EnterpriseAdministratorInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise administrator invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberorder\">\n      <a href=\"#enterprisememberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberOrder</h2>\n    <p>Ordering options for enterprise member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberorderfield\">EnterpriseMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailorder\">\n      <a href=\"#enterpriseserveruseraccountemailorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailOrder</h2>\n    <p>Ordering options for Enterprise Server user account email connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseserveruseraccountemailorderfield\">EnterpriseServerUserAccountEmailOrderField!</a></code>)</p></td>\n<td><p>The field to order emails by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountorder\">\n      <a href=\"#enterpriseserveruseraccountorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountOrder</h2>\n    <p>Ordering options for Enterprise Server user account connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseserveruseraccountorderfield\">EnterpriseServerUserAccountOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadorder\">\n      <a href=\"#enterpriseserveruseraccountsuploadorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadOrder</h2>\n    <p>Ordering options for Enterprise Server user accounts upload connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseserveruseraccountsuploadorderfield\">EnterpriseServerUserAccountsUploadOrderField!</a></code>)</p></td>\n<td><p>The field to order user accounts uploads by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fileaddition\">\n      <a href=\"#fileaddition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileAddition</h2>\n    <p>A command to add a file at the given path with the given contents as part of a\ncommit.  Any existing file at that that path will be replaced.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contents</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#base64string\">Base64String!</a></code>)</p></td>\n<td><p>The base64 encoded contents of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the repository where the file will be located.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filechanges\">\n      <a href=\"#filechanges\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileChanges</h2>\n    <p>A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file <code>additions</code> and zero or more\nfile <code>deletions</code>.</p>\n<p>Both fields are optional; omitting both will produce a commit with no\nfile changes.</p>\n<p><code>deletions</code> and <code>additions</code> describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n<code>/</code>.  The root of a git tree is an empty string, so paths are not\nslash-prefixed.</p>\n<p><code>path</code> values must be unique across all <code>additions</code> and <code>deletions</code>\nprovided.  Any duplication will result in a validation error.</p>\n<h3 id=\"encoding\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#encoding\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Encoding</h3>\n<p>File contents must be provided in full for each <code>FileAddition</code>.</p>\n<p>The <code>contents</code> of a <code>FileAddition</code> must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used.  Invalid base64\nencoding will be rejected with a validation error.</p>\n<p>The encoded contents may be binary.</p>\n<p>For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding).  No charset transcoding or\nline-ending normalization will be performed; it is the client&apos;s\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (<code>\\n</code> or <code>\\r\\n</code>), and that all files end\nwith a newline.</p>\n<h3 id=\"modeling-file-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#modeling-file-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Modeling file changes</h3>\n<p>Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the <code>FileChanges</code> type as follows:</p>\n<ol>\n<li>\n<p>New file addition: create file <code>hello world\\n</code> at path <code>docs/README.txt</code>:</p>\n<p>   {\n&quot;additions&quot; [\n{\n&quot;path&quot;: &quot;docs/README.txt&quot;,\n&quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n}\n]\n}</p>\n</li>\n<li>\n<p>Existing file modification: change existing <code>docs/README.txt</code> to have new\ncontent <code>new content here\\n</code>:</p>\n<pre><code>{\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new content here\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>Existing file deletion: remove existing file <code>docs/README.txt</code>.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with no changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to the same content at\n<code>newdocs/README.txt</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;hello world\\n&quot;)\n    }\n  ]\n}\n</code></pre>\n</li>\n<li>\n<p>File rename with changes: rename <code>docs/README.txt</code> with\nprevious content <code>hello world\\n</code> to a file at path\n<code>newdocs/README.txt</code> with content <code>new contents\\n</code>:</p>\n<pre><code>{\n  &quot;deletions&quot; [\n    {\n      &quot;path&quot;: &quot;docs/README.txt&quot;,\n    }\n  ],\n  &quot;additions&quot; [\n    {\n      &quot;path&quot;: &quot;newdocs/README.txt&quot;,\n      &quot;contents&quot;: base64encode(&quot;new contents\\n&quot;)\n    }\n  ]\n}.\n</code></pre>\n</li>\n</ol>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#fileaddition\">[FileAddition!]</a></code>)</p></td>\n<td><p>File to add or change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#filedeletion\">[FileDeletion!]</a></code>)</p></td>\n<td><p>Files to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"filedeletion\">\n      <a href=\"#filedeletion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FileDeletion</h2>\n    <p>A command to delete the file at the given path as part of a commit.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to delete.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuserinput\">\n      <a href=\"#followuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowUserInput</h2>\n    <p>Autogenerated input type of FollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to follow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistorder\">\n      <a href=\"#gistorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistOrder</h2>\n    <p>Ordering options for gist connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gistorderfield\">GistOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#grantenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantmigratorroleinput\">\n      <a href=\"#grantmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GrantMigratorRoleInput</h2>\n    <p>Autogenerated input type of GrantMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to grant the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importprojectinput\">\n      <a href=\"#importprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ImportProjectInput</h2>\n    <p>Autogenerated input type of ImportProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnImports</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectcolumnimport\">[ProjectColumnImport!]!</a></code>)</p></td>\n<td><p>A list of columns containing issues and pull requests.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the Organization or User to create the Project under.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the Project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryorder\">\n      <a href=\"#ipallowlistentryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryOrder</h2>\n    <p>Ordering options for IP allow list entry connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistentryorderfield\">IpAllowListEntryOrderField!</a></code>)</p></td>\n<td><p>The field to order IP allow list entries by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentorder\">\n      <a href=\"#issuecommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentOrder</h2>\n    <p>Ways in which lists of issue comments can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issue comments by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuecommentorderfield\">IssueCommentOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issue comments by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuefilters\">\n      <a href=\"#issuefilters\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueFilters</h2>\n    <p>Ways in which to filter lists of issues.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues assigned to given name. Pass in <code>null</code> for issues with no assigned\nuser, and <code>*</code> for issues assigned to any user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues created by given name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List issues where the list of label names exist on the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentioned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues where the given name is mentioned in the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its database ID. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneNumber</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>List issues that have been updated at or after the given date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p></td>\n<td><p>List issues filtered by the list of states given.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscribed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>List issues subscribed to by viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueorder\">\n      <a href=\"#issueorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order issues by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issueorderfield\">IssueOrderField!</a></code>)</p></td>\n<td><p>The field in which to order issues by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelorder\">\n      <a href=\"#labelorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelOrder</h2>\n    <p>Ways in which lists of labels can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order labels by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#labelorderfield\">LabelOrderField!</a></code>)</p></td>\n<td><p>The field in which to order labels by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageorder\">\n      <a href=\"#languageorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageOrder</h2>\n    <p>Ordering options for language connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#languageorderfield\">LanguageOrderField!</a></code>)</p></td>\n<td><p>The field to order languages by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoprojectinput\">\n      <a href=\"#linkrepositorytoprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LinkRepositoryToProjectInput</h2>\n    <p>Autogenerated input type of LinkRepositoryToProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project to link to a Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository to link to a Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockableinput\">\n      <a href=\"#locklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockLockableInput</h2>\n    <p>Autogenerated input type of LockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>A reason for why the item will be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswerinput\">\n      <a href=\"#markdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of MarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to mark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewedinput\">\n      <a href=\"#markfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of MarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as viewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreviewinput\">\n      <a href=\"#markpullrequestreadyforreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkPullRequestReadyForReviewInput</h2>\n    <p>Autogenerated input type of MarkPullRequestReadyForReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be marked as ready for review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranchinput\">\n      <a href=\"#mergebranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergeBranchInput</h2>\n    <p>Autogenerated input type of MergeBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>base</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the base branch that the provided head will be merged into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitMessage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Message to use for the merge commit. If omitted, a default will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>head</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The head to merge into the base branch. This can be a branch name or a commit GitObjectID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Repository containing the base branch that will be modified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequestinput\">\n      <a href=\"#mergepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergePullRequestInput</h2>\n    <p>Autogenerated input type of MergePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address to associate with this merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit body to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Commit headline to use for the merge commit; if omitted, a default message will be used.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>OID that the pull request head ref must match to allow merge; if omitted, no check is performed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p></td>\n<td><p>The merge method to use. If omitted, defaults to &apos;MERGE&apos;.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneorder\">\n      <a href=\"#milestoneorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneOrder</h2>\n    <p>Ordering options for milestone connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#milestoneorderfield\">MilestoneOrderField!</a></code>)</p></td>\n<td><p>The field to order milestones by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecommentinput\">\n      <a href=\"#minimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MinimizeCommentInput</h2>\n    <p>Autogenerated input type of MinimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>classifier</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reportedcontentclassifiers\">ReportedContentClassifiers!</a></code>)</p></td>\n<td><p>The classification of comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcardinput\">\n      <a href=\"#moveprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectCardInput</h2>\n    <p>Autogenerated input type of MoveProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterCardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new card after the card with this id. Pass null to place it at the top.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the card to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move it into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumninput\">\n      <a href=\"#moveprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MoveProjectColumnInput</h2>\n    <p>Autogenerated input type of MoveProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterColumnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>Place the new column after the column with this id. Pass null to place it at the front.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the column to move.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenterpriseownerorder\">\n      <a href=\"#orgenterpriseownerorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnterpriseOwnerOrder</h2>\n    <p>Ordering options for an organization&apos;s enterprise owner connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgenterpriseownerorderfield\">OrgEnterpriseOwnerOrderField!</a></code>)</p></td>\n<td><p>The field to order enterprise owners by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationorder\">\n      <a href=\"#organizationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationOrder</h2>\n    <p>Ordering options for organization connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationorderfield\">OrganizationOrderField!</a></code>)</p></td>\n<td><p>The field to order organizations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissueinput\">\n      <a href=\"#pinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinIssueInput</h2>\n    <p>Autogenerated input type of PinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardimport\">\n      <a href=\"#projectcardimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardImport</h2>\n    <p>An issue or PR and its owning repository to be used in a project card.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The issue or pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Repository name with owner (owner/repository).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnimport\">\n      <a href=\"#projectcolumnimport\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnImport</h2>\n    <p>A project column and a list of its issues and PRs.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>columnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectcardimport\">[ProjectCardImport!]</a></code>)</p></td>\n<td><p>A list of issues and pull requests in the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The position of the column, starting from 0.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectorder\">\n      <a href=\"#projectorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectOrder</h2>\n    <p>Ways in which lists of projects can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order projects by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectorderfield\">ProjectOrderField!</a></code>)</p></td>\n<td><p>The field in which to order projects by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestorder\">\n      <a href=\"#pullrequestorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestOrder</h2>\n    <p>Ways in which lists of issues can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order pull requests by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestorderfield\">PullRequestOrderField!</a></code>)</p></td>\n<td><p>The field in which to order pull requests by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionorder\">\n      <a href=\"#reactionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionOrder</h2>\n    <p>Ways in which lists of reactions can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order reactions by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactionorderfield\">ReactionOrderField!</a></code>)</p></td>\n<td><p>The field in which to order reactions by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reforder\">\n      <a href=\"#reforder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefOrder</h2>\n    <p>Ways in which lists of git refs can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order refs by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reforderfield\">RefOrderField!</a></code>)</p></td>\n<td><p>The field in which to order refs by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdate\">\n      <a href=\"#refupdate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdate</h2>\n    <p>A ref update.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>RefUpdate</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>afterOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The value this ref should be updated to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The value this ref needs to point to before the update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Force a non fast-forward update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitrefname\">GitRefname!</a></code>)</p></td>\n<td><p>The fully qualified name of the ref to be update. For example <code>refs/heads/branch-name</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeploymentsinput\">\n      <a href=\"#rejectdeploymentsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RejectDeploymentsInput</h2>\n    <p>Autogenerated input type of RejectDeployments.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Optional comment for rejecting deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of environments to reject deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRunId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the workflow run containing the pending deployments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseorder\">\n      <a href=\"#releaseorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseOrder</h2>\n    <p>Ways in which lists of releases can be ordered upon return.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order releases by the specified field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#releaseorderfield\">ReleaseOrderField!</a></code>)</p></td>\n<td><p>The field in which to order releases by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignableinput\">\n      <a href=\"#removeassigneesfromassignableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveAssigneesFromAssignableInput</h2>\n    <p>Autogenerated input type of RemoveAssigneesFromAssignable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the assignable object to remove assignees from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The id of users to remove as assignees.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmininput\">\n      <a href=\"#removeenterpriseadmininput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveEnterpriseAdminInput</h2>\n    <p>Autogenerated input type of RemoveEnterpriseAdmin.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID from which to remove the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to remove as an administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelableinput\">\n      <a href=\"#removelabelsfromlabelableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveLabelsFromLabelableInput</h2>\n    <p>Autogenerated input type of RemoveLabelsFromLabelable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]!</a></code>)</p></td>\n<td><p>The ids of labels to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The id of the Labelable to remove labels from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaboratorinput\">\n      <a href=\"#removeoutsidecollaboratorinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveOutsideCollaboratorInput</h2>\n    <p>Autogenerated input type of RemoveOutsideCollaborator.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization to remove the outside collaborator from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the outside collaborator to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereactioninput\">\n      <a href=\"#removereactioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveReactionInput</h2>\n    <p>Autogenerated input type of RemoveReaction.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>The name of the emoji reaction to remove.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestarinput\">\n      <a href=\"#removestarinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveStarInput</h2>\n    <p>Autogenerated input type of RemoveStar.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Starrable ID to unstar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvoteinput\">\n      <a href=\"#removeupvoteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemoveUpvoteInput</h2>\n    <p>Autogenerated input type of RemoveUpvote.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion or comment to remove upvote.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissueinput\">\n      <a href=\"#reopenissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenIssueInput</h2>\n    <p>Autogenerated input type of ReopenIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue to be opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequestinput\">\n      <a href=\"#reopenpullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenPullRequestInput</h2>\n    <p>Autogenerated input type of ReopenPullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the pull request to be reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationorder\">\n      <a href=\"#repositoryinvitationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationOrder</h2>\n    <p>Ordering options for repository invitation connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryinvitationorderfield\">RepositoryInvitationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository invitations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationorder\">\n      <a href=\"#repositorymigrationorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationOrder</h2>\n    <p>Ordering options for repository migrations.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorymigrationorderdirection\">RepositoryMigrationOrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorymigrationorderfield\">RepositoryMigrationOrderField!</a></code>)</p></td>\n<td><p>The field to order repository migrations by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryorder\">\n      <a href=\"#repositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryOrder</h2>\n    <p>Ordering options for repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryorderfield\">RepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviewsinput\">\n      <a href=\"#requestreviewsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequestReviewsInput</h2>\n    <p>Autogenerated input type of RequestReviews.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the team to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>union</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Add users to the set rather than replace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The Node IDs of the user to request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckinput\">\n      <a href=\"#requiredstatuscheckinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckInput</h2>\n    <p>Specifies the attributes for a new or updated required status check.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>appId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse &quot;any&quot; to allow any app to set the status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Status check context that must pass for commits to be accepted to the matching branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuiteinput\">\n      <a href=\"#rerequestchecksuiteinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RerequestCheckSuiteInput</h2>\n    <p>Autogenerated input type of RerequestCheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuiteId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthreadinput\">\n      <a href=\"#resolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ResolveReviewThreadInput</h2>\n    <p>Autogenerated input type of ResolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to resolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokeenterpriseorganizationsmigratorroleinput\">\n      <a href=\"#revokeenterpriseorganizationsmigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeEnterpriseOrganizationsMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise to which all organizations managed by it will be granted the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user to revoke the migrator role.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokemigratorroleinput\">\n      <a href=\"#revokemigratorroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RevokeMigratorRoleInput</h2>\n    <p>Autogenerated input type of RevokeMigratorRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user login or Team slug to revoke the migrator role from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#actortype\">ActorType!</a></code>)</p></td>\n<td><p>Specifies the type of the actor, can be either USER or TEAM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that the user/team belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyorder\">\n      <a href=\"#savedreplyorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyOrder</h2>\n    <p>Ordering options for saved reply connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#savedreplyorderfield\">SavedReplyOrderField!</a></code>)</p></td>\n<td><p>The field to order saved replies by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starorder\">\n      <a href=\"#starorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarOrder</h2>\n    <p>Ways in which star connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#starorderfield\">StarOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"startrepositorymigrationinput\">\n      <a href=\"#startrepositorymigrationinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StartRepositoryMigrationInput</h2>\n    <p>Autogenerated input type of StartRepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessToken</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Octoshift migration source access token.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether to continue the migration on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitArchiveUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded git archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>githubPat</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The GitHub personal access token of the user importing to the target repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>metadataArchiveUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The signed URL to access the user-uploaded metadata archive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization that will own the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the imported repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceRepositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source repository URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreviewinput\">\n      <a href=\"#submitpullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmitPullRequestReviewInput</h2>\n    <p>Autogenerated input type of SubmitPullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The text field to set on the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>event</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewevent\">PullRequestReviewEvent!</a></code>)</p></td>\n<td><p>The event to send to the Pull Request Review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request ID to submit any pending reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Pull Request Review ID to submit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentorder\">\n      <a href=\"#teamdiscussioncommentorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentOrder</h2>\n    <p>Ways in which team discussion comment connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamdiscussioncommentorderfield\">TeamDiscussionCommentOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionorder\">\n      <a href=\"#teamdiscussionorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionOrder</h2>\n    <p>Ways in which team discussion connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamdiscussionorderfield\">TeamDiscussionOrderField!</a></code>)</p></td>\n<td><p>The field by which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberorder\">\n      <a href=\"#teammemberorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberOrder</h2>\n    <p>Ordering options for team member connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teammemberorderfield\">TeamMemberOrderField!</a></code>)</p></td>\n<td><p>The field to order team members by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamorder\">\n      <a href=\"#teamorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamOrder</h2>\n    <p>Ways in which team connections can be ordered.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The direction in which to order nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamorderfield\">TeamOrderField!</a></code>)</p></td>\n<td><p>The field in which to order nodes by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryorder\">\n      <a href=\"#teamrepositoryorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryOrder</h2>\n    <p>Ordering options for team repository connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamrepositoryorderfield\">TeamRepositoryOrderField!</a></code>)</p></td>\n<td><p>The field to order repositories by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissueinput\">\n      <a href=\"#transferissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferIssueInput</h2>\n    <p>Autogenerated input type of TransferIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the issue to be transferred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository the issue should be transferred to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepositoryinput\">\n      <a href=\"#unarchiverepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnarchiveRepositoryInput</h2>\n    <p>Autogenerated input type of UnarchiveRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to unarchive.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuserinput\">\n      <a href=\"#unfollowuserinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnfollowUserInput</h2>\n    <p>Autogenerated input type of UnfollowUser.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the user to unfollow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromprojectinput\">\n      <a href=\"#unlinkrepositoryfromprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlinkRepositoryFromProjectInput</h2>\n    <p>Autogenerated input type of UnlinkRepositoryFromProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Project linked to the Repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Repository linked to the Project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockableinput\">\n      <a href=\"#unlocklockableinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockLockableInput</h2>\n    <p>Autogenerated input type of UnlockLockable.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the item to be unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswerinput\">\n      <a href=\"#unmarkdiscussioncommentasanswerinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkDiscussionCommentAsAnswerInput</h2>\n    <p>Autogenerated input type of UnmarkDiscussionCommentAsAnswer.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to unmark as an answer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewedinput\">\n      <a href=\"#unmarkfileasviewedinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkFileAsViewedInput</h2>\n    <p>Autogenerated input type of UnmarkFileAsViewed.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file to mark as unviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicateinput\">\n      <a href=\"#unmarkissueasduplicateinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkIssueAsDuplicateInput</h2>\n    <p>Autogenerated input type of UnmarkIssueAsDuplicate.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>canonicalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently considered canonical/authoritative/original.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicateId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the issue or pull request currently marked as a duplicate.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecommentinput\">\n      <a href=\"#unminimizecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnminimizeCommentInput</h2>\n    <p>Autogenerated input type of UnminimizeComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subject to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissueinput\">\n      <a href=\"#unpinissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinIssueInput</h2>\n    <p>Autogenerated input type of UnpinIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the issue to be unpinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthreadinput\">\n      <a href=\"#unresolvereviewthreadinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnresolveReviewThreadInput</h2>\n    <p>Autogenerated input type of UnresolveReviewThread.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>threadId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the thread to unresolve.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionruleinput\">\n      <a href=\"#updatebranchprotectionruleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateBranchProtectionRuleInput</h2>\n    <p>Autogenerated input type of UpdateBranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The global relay id of the branch protection rule to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass force push targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The glob-like pattern used to determine matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User, Team or App IDs allowed to push to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#requiredstatuscheckinput\">[RequiredStatusCheckInput!]</a></code>)</p></td>\n<td><p>The list of required status checks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalActorIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckruninput\">\n      <a href=\"#updatecheckruninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckRunInput</h2>\n    <p>Autogenerated input type of UpdateCheckRun.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunaction\">[CheckRunAction!]</a></code>)</p></td>\n<td><p>Possible further actions the integrator can perform, which a user may trigger.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRunId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run finished.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The final conclusion of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the integrator&apos;s site that has the full details of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the check.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>output</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunoutput\">CheckRunOutput</a></code>)</p></td>\n<td><p>Descriptive details about the run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the check run began.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#requestablecheckstatusstate\">RequestableCheckStatusState</a></code>)</p></td>\n<td><p>The current status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferencesinput\">\n      <a href=\"#updatechecksuitepreferencesinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateCheckSuitePreferencesInput</h2>\n    <p>Autogenerated input type of UpdateCheckSuitePreferences.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoTriggerPreferences</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checksuiteautotriggerpreference\">[CheckSuiteAutoTriggerPreference!]!</a></code>)</p></td>\n<td><p>The check suite preferences to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncommentinput\">\n      <a href=\"#updatediscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new contents of the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion comment to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioninput\">\n      <a href=\"#updatediscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new contents of the discussion body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>categoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of a discussion category within the same repository to change this discussion to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new discussion title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the allow private repository forking setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsettinginput\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseDefaultRepositoryPermissionSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the base repository permission setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The value for the base repository permission setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can change repository visibility setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can change repository visibility setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can create repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create internal repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create private repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Allow members to create public repositories. Defaults to current value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesPolicyEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When false, allow member organizations to set their own repository creation member privileges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessettinginput\">\n      <a href=\"#updateenterprisememberscandeleteissuessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteIssuesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete issues setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete issues setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessettinginput\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can delete repositories setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can delete repositories setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssettinginput\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can invite collaborators setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can invite collaborators setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessettinginput\">\n      <a href=\"#updateenterprisememberscanmakepurchasessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanMakePurchasesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can make purchases setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can make purchases setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can update protected branches setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can update protected branches setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssettinginput\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the members can view dependency insights setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the members can view dependency insights setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssettinginput\">\n      <a href=\"#updateenterpriseorganizationprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOrganizationProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the organization projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the organization projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseownerorganizationroleinput\">\n      <a href=\"#updateenterpriseownerorganizationroleinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseOwnerOrganizationRoleInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Enterprise which the owner belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization for membership change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role to assume in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofileinput\">\n      <a href=\"#updateenterpriseprofileinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseProfileInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseProfile.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Enterprise ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The URL of the enterprise&apos;s website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssettinginput\">\n      <a href=\"#updateenterpriserepositoryprojectssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseRepositoryProjectsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the repository projects setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the repository projects setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssettinginput\">\n      <a href=\"#updateenterpriseteamdiscussionssettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTeamDiscussionsSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the team discussions setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the team discussions setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</h2>\n    <p>Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the enterprise on which to set the two factor authentication required setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the two factor authentication required setting on the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironmentinput\">\n      <a href=\"#updateenvironmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateEnvironmentInput</h2>\n    <p>Autogenerated input type of UpdateEnvironment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The node ID of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>The ids of users or teams that can approve deployments to this environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The wait timer in minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsettinginput\">\n      <a href=\"#updateipallowlistenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner on which to set the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list enabled setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentryinput\">\n      <a href=\"#updateipallowlistentryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListEntryInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An IP address or range of addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IP allow list entry to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the IP allow list entry is active when an IP allow list is enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An optional name for the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsettinginput\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIpAllowListForInstalledAppsEnabledSettingInput</h2>\n    <p>Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settingValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The value for the IP allow list configuration for installed GitHub Apps setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecommentinput\">\n      <a href=\"#updateissuecommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueCommentInput</h2>\n    <p>Autogenerated input type of UpdateIssueComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the IssueComment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissueinput\">\n      <a href=\"#updateissueinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateIssueInput</h2>\n    <p>Autogenerated input type of UpdateIssue.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body for the issue description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the Issue to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">IssueState</a></code>)</p></td>\n<td><p>The desired issue state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title for the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabelinput\">\n      <a href=\"#updatelabelinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateLabelInput</h2>\n    <p>Autogenerated input type of UpdateLabel.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateLabelInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A 6 character hex code, without the leading #, identifying the updated color of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of the label, such as its purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the label to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated name of the label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsettinginput\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</h2>\n    <p>Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Enable forking of private repositories in the organization?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the organization on which to set the allow private repository forking setting.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcardinput\">\n      <a href=\"#updateprojectcardinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectCardInput</h2>\n    <p>Autogenerated input type of UpdateProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the ProjectCard should be archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The note of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectCard ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumninput\">\n      <a href=\"#updateprojectcolumninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectColumnInput</h2>\n    <p>Autogenerated input type of UpdateProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ProjectColumn ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectinput\">\n      <a href=\"#updateprojectinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateProjectInput</h2>\n    <p>Autogenerated input type of UpdateProject.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Project ID to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the project is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">ProjectState</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranchinput\">\n      <a href=\"#updatepullrequestbranchinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestBranchInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestBranch.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expectedHeadOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The head ref oid for the upstream branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestinput\">\n      <a href=\"#updatepullrequestinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestInput</h2>\n    <p>Autogenerated input type of UpdatePullRequest.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assigneeIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of users for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The contents of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs of labels for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The Node ID of the milestone for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of Node IDs for projects associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestupdatestate\">PullRequestUpdateState</a></code>)</p></td>\n<td><p>The target state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcommentinput\">\n      <a href=\"#updatepullrequestreviewcommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewCommentInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewCommentId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewinput\">\n      <a href=\"#updatepullrequestreviewinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdatePullRequestReviewInput</h2>\n    <p>Autogenerated input type of UpdatePullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the pull request review to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefinput\">\n      <a href=\"#updaterefinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefInput</h2>\n    <p>Autogenerated input type of UpdateRef.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>force</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Permit updates of branch Refs that are not fast-forwards?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The GitObjectID that the Ref shall be updated to target.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the Ref to be updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefsinput\">\n      <a href=\"#updaterefsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRefsInput</h2>\n    <p>Autogenerated input type of UpdateRefs.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateRefsInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#refupdate\">[RefUpdate!]!</a></code>)</p></td>\n<td><p>A list of ref updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepositoryinput\">\n      <a href=\"#updaterepositoryinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateRepositoryInput</h2>\n    <p>Autogenerated input type of UpdateRepository.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A new description for the repository. Pass an empty string to erase the existing description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the project boards feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates if the repository should have the wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for a web page about this repository. Pass an empty string to erase the existing URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The new name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the repository to update.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>template</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscriptioninput\">\n      <a href=\"#updatesubscriptioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateSubscriptionInput</h2>\n    <p>Autogenerated input type of UpdateSubscription.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState!</a></code>)</p></td>\n<td><p>The new state of the subscription.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribableId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the subscribable object to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncommentinput\">\n      <a href=\"#updateteamdiscussioncommentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionCommentInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The updated text of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The ID of the comment to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioninput\">\n      <a href=\"#updateteamdiscussioninput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamDiscussionInput</h2>\n    <p>Autogenerated input type of UpdateTeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated text of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the discussion to modify.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>If provided, sets the pinned state of the updated discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The updated title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignmentinput\">\n      <a href=\"#updateteamreviewassignmentinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTeamReviewAssignmentInput</h2>\n    <p>Autogenerated input type of UpdateTeamReviewAssignment.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>UpdateTeamReviewAssignmentInput</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>algorithm</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>The algorithm to use for review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Turn on or off review assignment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>excludedTeamMemberIds</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">[ID!]</a></code>)</p></td>\n<td><p>An array of team member IDs to exclude.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the team to update review assignments of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notifyTeam</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Notify the entire team of the PR if it is delegated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamMemberCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of team members to assign.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopicsinput\">\n      <a href=\"#updatetopicsinput\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UpdateTopicsInput</h2>\n    <p>Autogenerated input type of UpdateTopics.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>The Node ID of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicNames</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>An array of topic names.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusorder\">\n      <a href=\"#userstatusorder\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusOrder</h2>\n    <p>Ordering options for user status connections.</p>\n  </div>\n\n  <div>\n    \n \n\n\n    <h4>Input fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection!</a></code>)</p></td>\n<td><p>The ordering direction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>field</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#userstatusorderfield\">UserStatusOrderField!</a></code>)</p></td>\n<td><p>The field to order user statuses by.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#abortqueuedmigrationsinput\">\n      AbortQueuedMigrationsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#abortqueuedmigrationsinput\">\n      AbortQueuedMigrationsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignableinput\">\n      AddAssigneesToAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcommentinput\">\n      AddCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncommentinput\">\n      AddDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmininput\">\n      AddEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelableinput\">\n      AddLabelsToLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcardinput\">\n      AddProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumninput\">\n      AddProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcommentinput\">\n      AddPullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewinput\">\n      AddPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthreadinput\">\n      AddPullRequestReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreactioninput\">\n      AddReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstarinput\">\n      AddStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstarinput\">\n      AddStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvoteinput\">\n      AddUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeploymentsinput\">\n      ApproveDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepositoryinput\">\n      ArchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#auditlogorder\">\n      AuditLogOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatusinput\">\n      ChangeUserStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationdata\">\n      CheckAnnotationData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationrange\">\n      CheckAnnotationRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunaction\">\n      CheckRunAction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunfilter\">\n      CheckRunFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutput\">\n      CheckRunOutput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunoutputimage\">\n      CheckRunOutputImage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteautotriggerpreference\">\n      CheckSuiteAutoTriggerPreference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuitefilter\">\n      CheckSuiteFilter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelableinput\">\n      ClearLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneprojectinput\">\n      CloneProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepositoryinput\">\n      CloneTemplateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissueinput\">\n      CloseIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequestinput\">\n      ClosePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitauthor\">\n      CommitAuthor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitauthor\">\n      CommitAuthor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionorder\">\n      CommitContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitmessage\">\n      CommitMessage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitmessage\">\n      CommitMessage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#committablebranch\">\n      CommittableBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#committablebranch\">\n      CommittableBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionorder\">\n      ContributionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionorder\">\n      ContributionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissueinput\">\n      ConvertProjectCardNoteToIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraftinput\">\n      ConvertPullRequestToDraftInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionruleinput\">\n      CreateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckruninput\">\n      CreateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuiteinput\">\n      CreateCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranchinput\">\n      CreateCommitOnBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentinput\">\n      CreateDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatusinput\">\n      CreateDeploymentStatusInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussioninput\">\n      CreateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganizationinput\">\n      CreateEnterpriseOrganizationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironmentinput\">\n      CreateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentryinput\">\n      CreateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissueinput\">\n      CreateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabelinput\">\n      CreateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createmigrationsourceinput\">\n      CreateMigrationSourceInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createmigrationsourceinput\">\n      CreateMigrationSourceInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createprojectinput\">\n      CreateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequestinput\">\n      CreatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrefinput\">\n      CreateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrefinput\">\n      CreateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepositoryinput\">\n      CreateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncommentinput\">\n      CreateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioninput\">\n      CreateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionruleinput\">\n      DeleteBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeploymentinput\">\n      DeleteDeploymentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncommentinput\">\n      DeleteDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioninput\">\n      DeleteDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironmentinput\">\n      DeleteEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentryinput\">\n      DeleteIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecommentinput\">\n      DeleteIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissueinput\">\n      DeleteIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabelinput\">\n      DeleteLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcardinput\">\n      DeleteProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumninput\">\n      DeleteProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectinput\">\n      DeleteProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcommentinput\">\n      DeletePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewinput\">\n      DeletePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleterefinput\">\n      DeleteRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncommentinput\">\n      DeleteTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioninput\">\n      DeleteTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentorder\">\n      DeploymentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomergeinput\">\n      DisablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionorder\">\n      DiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreviewinput\">\n      DismissPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismissrepositoryvulnerabilityalertinput\">\n      DismissRepositoryVulnerabilityAlertInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismissrepositoryvulnerabilityalertinput\">\n      DismissRepositoryVulnerabilityAlertInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewcomment\">\n      DraftPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#draftpullrequestreviewthread\">\n      DraftPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomergeinput\">\n      EnablePullRequestAutoMergeInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationorder\">\n      EnterpriseAdministratorInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberorder\">\n      EnterpriseMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailorder\">\n      EnterpriseServerUserAccountEmailOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountorder\">\n      EnterpriseServerUserAccountOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadorder\">\n      EnterpriseServerUserAccountsUploadOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#fileaddition\">\n      FileAddition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#fileaddition\">\n      FileAddition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filechanges\">\n      FileChanges</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filechanges\">\n      FileChanges</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#filedeletion\">\n      FileDeletion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#filedeletion\">\n      FileDeletion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuserinput\">\n      FollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuserinput\">\n      FollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistorder\">\n      GistOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistorder\">\n      GistOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantenterpriseorganizationsmigratorroleinput\">\n      GrantEnterpriseOrganizationsMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantenterpriseorganizationsmigratorroleinput\">\n      GrantEnterpriseOrganizationsMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantmigratorroleinput\">\n      GrantMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantmigratorroleinput\">\n      GrantMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importprojectinput\">\n      ImportProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryorder\">\n      IpAllowListEntryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentorder\">\n      IssueCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuefilters\">\n      IssueFilters</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuefilters\">\n      IssueFilters</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueorder\">\n      IssueOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueorder\">\n      IssueOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelorder\">\n      LabelOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelorder\">\n      LabelOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageorder\">\n      LanguageOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageorder\">\n      LanguageOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoprojectinput\">\n      LinkRepositoryToProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockableinput\">\n      LockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswerinput\">\n      MarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewedinput\">\n      MarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreviewinput\">\n      MarkPullRequestReadyForReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranchinput\">\n      MergeBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequestinput\">\n      MergePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneorder\">\n      MilestoneOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecommentinput\">\n      MinimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcardinput\">\n      MoveProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumninput\">\n      MoveProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenterpriseownerorder\">\n      OrgEnterpriseOwnerOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenterpriseownerorder\">\n      OrgEnterpriseOwnerOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationorder\">\n      OrganizationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissueinput\">\n      PinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardimport\">\n      ProjectCardImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnimport\">\n      ProjectColumnImport</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectorder\">\n      ProjectOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectorder\">\n      ProjectOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestorder\">\n      PullRequestOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionorder\">\n      ReactionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionorder\">\n      ReactionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reforder\">\n      RefOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reforder\">\n      RefOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdate\">\n      RefUpdate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdate\">\n      RefUpdate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeploymentsinput\">\n      RejectDeploymentsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseorder\">\n      ReleaseOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignableinput\">\n      RemoveAssigneesFromAssignableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmininput\">\n      RemoveEnterpriseAdminInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelableinput\">\n      RemoveLabelsFromLabelableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaboratorinput\">\n      RemoveOutsideCollaboratorInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereactioninput\">\n      RemoveReactionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestarinput\">\n      RemoveStarInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvoteinput\">\n      RemoveUpvoteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissueinput\">\n      ReopenIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequestinput\">\n      ReopenPullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationorder\">\n      RepositoryInvitationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigrationorder\">\n      RepositoryMigrationOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigrationorder\">\n      RepositoryMigrationOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryorder\">\n      RepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviewsinput\">\n      RequestReviewsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requiredstatuscheckinput\">\n      RequiredStatusCheckInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requiredstatuscheckinput\">\n      RequiredStatusCheckInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuiteinput\">\n      RerequestCheckSuiteInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthreadinput\">\n      ResolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokeenterpriseorganizationsmigratorroleinput\">\n      RevokeEnterpriseOrganizationsMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokeenterpriseorganizationsmigratorroleinput\">\n      RevokeEnterpriseOrganizationsMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokemigratorroleinput\">\n      RevokeMigratorRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokemigratorroleinput\">\n      RevokeMigratorRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyorder\">\n      SavedReplyOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starorder\">\n      StarOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starorder\">\n      StarOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#startrepositorymigrationinput\">\n      StartRepositoryMigrationInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#startrepositorymigrationinput\">\n      StartRepositoryMigrationInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreviewinput\">\n      SubmitPullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentorder\">\n      TeamDiscussionCommentOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionorder\">\n      TeamDiscussionOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberorder\">\n      TeamMemberOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamorder\">\n      TeamOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamorder\">\n      TeamOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryorder\">\n      TeamRepositoryOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissueinput\">\n      TransferIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepositoryinput\">\n      UnarchiveRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuserinput\">\n      UnfollowUserInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromprojectinput\">\n      UnlinkRepositoryFromProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockableinput\">\n      UnlockLockableInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswerinput\">\n      UnmarkDiscussionCommentAsAnswerInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewedinput\">\n      UnmarkFileAsViewedInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicateinput\">\n      UnmarkIssueAsDuplicateInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecommentinput\">\n      UnminimizeCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissueinput\">\n      UnpinIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthreadinput\">\n      UnresolveReviewThreadInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionruleinput\">\n      UpdateBranchProtectionRuleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckruninput\">\n      UpdateCheckRunInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferencesinput\">\n      UpdateCheckSuitePreferencesInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncommentinput\">\n      UpdateDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioninput\">\n      UpdateDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsettinginput\">\n      UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsettinginput\">\n      UpdateEnterpriseDefaultRepositoryPermissionSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">\n      UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanCreateRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessettinginput\">\n      UpdateEnterpriseMembersCanDeleteIssuesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessettinginput\">\n      UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssettinginput\">\n      UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessettinginput\">\n      UpdateEnterpriseMembersCanMakePurchasesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessettinginput\">\n      UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssettinginput\">\n      UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssettinginput\">\n      UpdateEnterpriseOrganizationProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseownerorganizationroleinput\">\n      UpdateEnterpriseOwnerOrganizationRoleInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseownerorganizationroleinput\">\n      UpdateEnterpriseOwnerOrganizationRoleInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofileinput\">\n      UpdateEnterpriseProfileInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssettinginput\">\n      UpdateEnterpriseRepositoryProjectsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssettinginput\">\n      UpdateEnterpriseTeamDiscussionsSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsettinginput\">\n      UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironmentinput\">\n      UpdateEnvironmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsettinginput\">\n      UpdateIpAllowListEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentryinput\">\n      UpdateIpAllowListEntryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsettinginput\">\n      UpdateIpAllowListForInstalledAppsEnabledSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecommentinput\">\n      UpdateIssueCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissueinput\">\n      UpdateIssueInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabelinput\">\n      UpdateLabelInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\">\n      UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateorganizationallowprivaterepositoryforkingsettinginput\">\n      UpdateOrganizationAllowPrivateRepositoryForkingSettingInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcardinput\">\n      UpdateProjectCardInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumninput\">\n      UpdateProjectColumnInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectinput\">\n      UpdateProjectInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestbranchinput\">\n      UpdatePullRequestBranchInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestbranchinput\">\n      UpdatePullRequestBranchInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestinput\">\n      UpdatePullRequestInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcommentinput\">\n      UpdatePullRequestReviewCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewinput\">\n      UpdatePullRequestReviewInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefinput\">\n      UpdateRefInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefsinput\">\n      UpdateRefsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepositoryinput\">\n      UpdateRepositoryInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscriptioninput\">\n      UpdateSubscriptionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncommentinput\">\n      UpdateTeamDiscussionCommentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioninput\">\n      UpdateTeamDiscussionInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignmentinput\">\n      UpdateTeamReviewAssignmentInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopicsinput\">\n      UpdateTopicsInput</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusorder\">\n      UserStatusOrder</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
diff --git a/lib/graphql/static/prerendered-mutations.json b/lib/graphql/static/prerendered-mutations.json
index 3589559bc601..f2691250af10 100644
--- a/lib/graphql/static/prerendered-mutations.json
+++ b/lib/graphql/static/prerendered-mutations.json
@@ -3,1253 +3,1253 @@
     "html": "<div>\n  <div>\n    <h2 id=\"abortqueuedmigrations\">\n      <a href=\"#abortqueuedmigrations\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>abortQueuedMigrations</h2>\n  <p>Clear all of a customer&apos;s queued migrations.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#abortqueuedmigrationsinput\">AbortQueuedMigrationsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Did the operation succeed?.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"acceptenterpriseadministratorinvitation\">\n      <a href=\"#acceptenterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>acceptEnterpriseAdministratorInvitation</h2>\n  <p>Accepts a pending invitation for a user to become an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#acceptenterpriseadministratorinvitationinput\">AcceptEnterpriseAdministratorInvitationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitation</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The invitation that was accepted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of accepting an administrator invitation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"accepttopicsuggestion\">\n      <a href=\"#accepttopicsuggestion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>acceptTopicSuggestion</h2>\n  <p>Applies a suggested topic to the repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#accepttopicsuggestioninput\">AcceptTopicSuggestionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The accepted topic.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addassigneestoassignable\">\n      <a href=\"#addassigneestoassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addAssigneesToAssignable</h2>\n  <p>Adds assignees to an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addassigneestoassignableinput\">AddAssigneesToAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was assigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcomment\">\n      <a href=\"#addcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addComment</h2>\n  <p>Adds a comment to an Issue or Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addcommentinput\">AddCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/graphql/reference/objects#issuecommentedge\">IssueCommentEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>)</p></td>\n<td><p>The subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineEdge</code> (<code><a href=\"/en/graphql/reference/objects#issuetimelineitemedge\">IssueTimelineItemEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s timeline connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncomment\">\n      <a href=\"#adddiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addDiscussionComment</h2>\n  <p>Adds a comment to a Discussion, possibly as a reply to another comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#adddiscussioncommentinput\">AddDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The newly created discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterprisesupportentitlement\">\n      <a href=\"#addenterprisesupportentitlement\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addEnterpriseSupportEntitlement</h2>\n  <p>Adds a support entitlement to an enterprise member.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addenterprisesupportentitlementinput\">AddEnterpriseSupportEntitlementInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of adding the support entitlement.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelable\">\n      <a href=\"#addlabelstolabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addLabelsToLabelable</h2>\n  <p>Adds labels to a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addlabelstolabelableinput\">AddLabelsToLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was labeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcard\">\n      <a href=\"#addprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectCard</h2>\n  <p>Adds a card to a ProjectColumn. Either <code>contentId</code> or <code>note</code> must be provided but <strong>not</strong> both.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addprojectcardinput\">AddProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The edge from the ProjectColumn&apos;s card connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The ProjectColumn.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumn\">\n      <a href=\"#addprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectColumn</h2>\n  <p>Adds a column to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addprojectcolumninput\">AddProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The edge from the project&apos;s column connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectnextitem\">\n      <a href=\"#addprojectnextitem\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectNextItem</h2>\n  <p>Adds an existing item (Issue or PullRequest) to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addprojectnextiteminput\">AddProjectNextItemInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItem</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitem\">ProjectNextItem</a></code>)</p></td>\n<td><p>The item added to the project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreview\">\n      <a href=\"#addpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReview</h2>\n  <p>Adds a review to a Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addpullrequestreviewinput\">AddPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The newly created pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewEdge</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewedge\">PullRequestReviewEdge</a></code>)</p></td>\n<td><p>The edge from the pull request&apos;s review connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcomment\">\n      <a href=\"#addpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewComment</h2>\n  <p>Adds a comment to a review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addpullrequestreviewcommentinput\">AddPullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The newly created comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcommentedge\">PullRequestReviewCommentEdge</a></code>)</p></td>\n<td><p>The edge from the review&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthread\">\n      <a href=\"#addpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewThread</h2>\n  <p>Adds a new thread to a pending Pull Request Review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addpullrequestreviewthreadinput\">AddPullRequestReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The newly created thread.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreaction\">\n      <a href=\"#addreaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addReaction</h2>\n  <p>Adds a reaction to a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addreactioninput\">AddReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstar\">\n      <a href=\"#addstar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addStar</h2>\n  <p>Adds a star to a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addstarinput\">AddStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvote\">\n      <a href=\"#addupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addUpvote</h2>\n  <p>Add an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addupvoteinput\">AddUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomain\">\n      <a href=\"#addverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addVerifiableDomain</h2>\n  <p>Adds a verifiable domain to an owning account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#addverifiabledomaininput\">AddVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was added.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeployments\">\n      <a href=\"#approvedeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveDeployments</h2>\n  <p>Approve all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#approvedeploymentsinput\">ApproveDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomain\">\n      <a href=\"#approveverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveVerifiableDomain</h2>\n  <p>Approve a verifiable domain for notification delivery.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#approveverifiabledomaininput\">ApproveVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was approved.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepository\">\n      <a href=\"#archiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>archiveRepository</h2>\n  <p>Marks a repository as archived.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#archiverepositoryinput\">ArchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was marked as archived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelenterpriseadmininvitation\">\n      <a href=\"#cancelenterpriseadmininvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cancelEnterpriseAdminInvitation</h2>\n  <p>Cancels a pending invitation for an administrator to join an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#cancelenterpriseadmininvitationinput\">CancelEnterpriseAdminInvitationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitation</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The invitation that was canceled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of canceling an administrator invitation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelsponsorship\">\n      <a href=\"#cancelsponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cancelSponsorship</h2>\n  <p>Cancel an active sponsorship.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#cancelsponsorshipinput\">CancelSponsorshipInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsTier</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The tier that was being used at the time of cancellation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatus\">\n      <a href=\"#changeuserstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>changeUserStatus</h2>\n  <p>Update your status on GitHub.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#changeuserstatusinput\">ChangeUserStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>Your updated status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelable\">\n      <a href=\"#clearlabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>clearLabelsFromLabelable</h2>\n  <p>Clears all labels from a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#clearlabelsfromlabelableinput\">ClearLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was unlabeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneproject\">\n      <a href=\"#cloneproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneProject</h2>\n  <p>Creates a new project by cloning configuration from an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#cloneprojectinput\">CloneProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>jobStatusId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The id of the JobStatus for populating cloned fields.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new cloned project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepository\">\n      <a href=\"#clonetemplaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneTemplateRepository</h2>\n  <p>Create a new repository with the same files and directory structure as a template repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#clonetemplaterepositoryinput\">CloneTemplateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissue\">\n      <a href=\"#closeissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closeIssue</h2>\n  <p>Close an issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#closeissueinput\">CloseIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequest\">\n      <a href=\"#closepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closePullRequest</h2>\n  <p>Close a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#closepullrequestinput\">ClosePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissue\">\n      <a href=\"#convertprojectcardnotetoissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertProjectCardNoteToIssue</h2>\n  <p>Convert a project note card to one associated with a newly created issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#convertprojectcardnotetoissueinput\">ConvertProjectCardNoteToIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraft\">\n      <a href=\"#convertpullrequesttodraft\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertPullRequestToDraft</h2>\n  <p>Converts a pull request to draft.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#convertpullrequesttodraftinput\">ConvertPullRequestToDraftInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is now a draft.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionrule\">\n      <a href=\"#createbranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createbranchprotectionruleinput\">CreateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckrun\">\n      <a href=\"#createcheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckRun</h2>\n  <p>Create a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createcheckruninput\">CreateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The newly created check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuite\">\n      <a href=\"#createchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckSuite</h2>\n  <p>Create a check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createchecksuiteinput\">CreateCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The newly created check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranch\">\n      <a href=\"#createcommitonbranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCommitOnBranch</h2>\n  <p>Appends a commit to the given branch as the authenticated user.</p>\n<p>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 <code>git commit</code>.</p>\n<h3 id=\"locating-a-branch\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#locating-a-branch\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Locating a Branch</h3>\n<p>Commits are appended to a <code>branch</code> of type <code>Ref</code>.\nThis must refer to a git branch (i.e.  the fully qualified path must\nbegin with <code>refs/heads/</code>, although including this prefix is optional.</p>\n<p>Callers may specify the <code>branch</code> to commit to either by its global node\nID or by passing both of <code>repositoryNameWithOwner</code> and <code>refName</code>.  For\nmore details see the documentation for <code>CommittableBranch</code>.</p>\n<h3 id=\"describing-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#describing-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Describing Changes</h3>\n<p><code>fileChanges</code> are specified as a <code>FilesChanges</code> object describing\n<code>FileAdditions</code> and <code>FileDeletions</code>.</p>\n<p>Please see the documentation for <code>FileChanges</code> for more information on\nhow to use this argument to describe any set of file changes.</p>\n<h3 id=\"authorship\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#authorship\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Authorship</h3>\n<p>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.</p>\n<p>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.</p>\n<p>If you need full control over author and committer information, please\nuse the Git Database REST API instead.</p>\n<h3 id=\"commit-signing\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#commit-signing\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Commit Signing</h3>\n<p>Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createcommitonbranchinput\">CreateCommitOnBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref which has been updated to point to the new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeployment\">\n      <a href=\"#createdeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeployment</h2>\n  <p>Creates a new deployment event.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeployment</code> is available under the <a href=\"/en/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createdeploymentinput\">CreateDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerged</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>True if the default branch has been auto-merged into the deployment ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The new deployment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatus\">\n      <a href=\"#createdeploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeploymentStatus</h2>\n  <p>Create a deployment status.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeploymentStatus</code> is available under the <a href=\"/en/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createdeploymentstatusinput\">CreateDeploymentStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The new deployment status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussion\">\n      <a href=\"#creatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDiscussion</h2>\n  <p>Create a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#creatediscussioninput\">CreateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganization\">\n      <a href=\"#createenterpriseorganization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnterpriseOrganization</h2>\n  <p>Creates an organization as part of an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createenterpriseorganizationinput\">CreateEnterpriseOrganizationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise that owns the created organization.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironment\">\n      <a href=\"#createenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnvironment</h2>\n  <p>Creates an environment or simply returns it if already exists.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createenvironmentinput\">CreateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The new or existing environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentry\">\n      <a href=\"#createipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIpAllowListEntry</h2>\n  <p>Creates a new IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createipallowlistentryinput\">CreateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissue\">\n      <a href=\"#createissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIssue</h2>\n  <p>Creates a new issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createissueinput\">CreateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The new issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabel\">\n      <a href=\"#createlabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createLabel</h2>\n  <p>Creates a new label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createLabel</code> is available under the <a href=\"/en/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createlabelinput\">CreateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The new label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createmigrationsource\">\n      <a href=\"#createmigrationsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createMigrationSource</h2>\n  <p>Creates an Octoshift migration source.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createmigrationsourceinput\">CreateMigrationSourceInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>migrationSource</code> (<code><a href=\"/en/graphql/reference/objects#migrationsource\">MigrationSource</a></code>)</p></td>\n<td><p>The created Octoshift migration source.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createproject\">\n      <a href=\"#createproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createProject</h2>\n  <p>Creates a new project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createprojectinput\">CreateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequest\">\n      <a href=\"#createpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createPullRequest</h2>\n  <p>Create a new pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createpullrequestinput\">CreatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The new pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createref\">\n      <a href=\"#createref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRef</h2>\n  <p>Create a new Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createrefinput\">CreateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The newly created ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepository\">\n      <a href=\"#createrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRepository</h2>\n  <p>Create a new repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createrepositoryinput\">CreateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createsponsorship\">\n      <a href=\"#createsponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createSponsorship</h2>\n  <p>Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createsponsorshipinput\">CreateSponsorshipInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorship</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship that was started.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussion\">\n      <a href=\"#createteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussion</h2>\n  <p>Creates a new team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createteamdiscussioninput\">CreateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The new discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncomment\">\n      <a href=\"#createteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussionComment</h2>\n  <p>Creates a new team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#createteamdiscussioncommentinput\">CreateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The new comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"declinetopicsuggestion\">\n      <a href=\"#declinetopicsuggestion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>declineTopicSuggestion</h2>\n  <p>Rejects a suggested topic for the repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#declinetopicsuggestioninput\">DeclineTopicSuggestionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The declined topic.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionrule\">\n      <a href=\"#deletebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteBranchProtectionRule</h2>\n  <p>Delete a branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deletebranchprotectionruleinput\">DeleteBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeployment\">\n      <a href=\"#deletedeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDeployment</h2>\n  <p>Deletes a deployment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deletedeploymentinput\">DeleteDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussion\">\n      <a href=\"#deletediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussion</h2>\n  <p>Delete a discussion and all of its replies.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deletediscussioninput\">DeleteDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncomment\">\n      <a href=\"#deletediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussionComment</h2>\n  <p>Delete a discussion comment. If it has replies, wipe it instead.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deletediscussioncommentinput\">DeleteDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironment\">\n      <a href=\"#deleteenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteEnvironment</h2>\n  <p>Deletes an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteenvironmentinput\">DeleteEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentry\">\n      <a href=\"#deleteipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIpAllowListEntry</h2>\n  <p>Deletes an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteipallowlistentryinput\">DeleteIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissue\">\n      <a href=\"#deleteissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssue</h2>\n  <p>Deletes an Issue object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteissueinput\">DeleteIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository the issue belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecomment\">\n      <a href=\"#deleteissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssueComment</h2>\n  <p>Deletes an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteissuecommentinput\">DeleteIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabel\">\n      <a href=\"#deletelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteLabel</h2>\n  <p>Deletes a label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deleteLabel</code> is available under the <a href=\"/en/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deletelabelinput\">DeleteLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversion\">\n      <a href=\"#deletepackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePackageVersion</h2>\n  <p>Delete a package version.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deletePackageVersion</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-package-version-deletion-preview\">Access to package version deletion preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deletepackageversioninput\">DeletePackageVersionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the operation succeeded.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteproject\">\n      <a href=\"#deleteproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProject</h2>\n  <p>Deletes a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteprojectinput\">DeleteProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>)</p></td>\n<td><p>The repository or organization the project was removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcard\">\n      <a href=\"#deleteprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectCard</h2>\n  <p>Deletes a project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteprojectcardinput\">DeleteProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The column the deleted card was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCardId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted card ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumn\">\n      <a href=\"#deleteprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectColumn</h2>\n  <p>Deletes a project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteprojectcolumninput\">DeleteProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedColumnId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted column ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project the deleted column was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectnextitem\">\n      <a href=\"#deleteprojectnextitem\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectNextItem</h2>\n  <p>Deletes an item from a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteprojectnextiteminput\">DeleteProjectNextItemInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedItemId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the deleted item.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreview\">\n      <a href=\"#deletepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReview</h2>\n  <p>Deletes a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deletepullrequestreviewinput\">DeletePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The deleted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcomment\">\n      <a href=\"#deletepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReviewComment</h2>\n  <p>Deletes a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deletepullrequestreviewcommentinput\">DeletePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review the deleted comment belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteref\">\n      <a href=\"#deleteref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteRef</h2>\n  <p>Delete a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleterefinput\">DeleteRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussion\">\n      <a href=\"#deleteteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussion</h2>\n  <p>Deletes a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteteamdiscussioninput\">DeleteTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncomment\">\n      <a href=\"#deleteteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussionComment</h2>\n  <p>Deletes a team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteteamdiscussioncommentinput\">DeleteTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomain\">\n      <a href=\"#deleteverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteVerifiableDomain</h2>\n  <p>Deletes a verifiable domain.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#deleteverifiabledomaininput\">DeleteVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owning account from which the domain was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomerge\">\n      <a href=\"#disablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>disablePullRequestAutoMerge</h2>\n  <p>Disable auto merge on the given pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#disablepullrequestautomergeinput\">DisablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto merge was disabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreview\">\n      <a href=\"#dismisspullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissPullRequestReview</h2>\n  <p>Dismisses an approved or rejected pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#dismisspullrequestreviewinput\">DismissPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The dismissed pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalert\">\n      <a href=\"#dismissrepositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissRepositoryVulnerabilityAlert</h2>\n  <p>Dismisses the Dependabot alert.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput\">DismissRepositoryVulnerabilityAlertInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlert</code> (<code><a href=\"/en/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The Dependabot alert that was dismissed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomerge\">\n      <a href=\"#enablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>enablePullRequestAutoMerge</h2>\n  <p>Enable the default auto-merge on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#enablepullrequestautomergeinput\">EnablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto-merge was enabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuser\">\n      <a href=\"#followuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>followUser</h2>\n  <p>Follow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#followuserinput\">FollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was followed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantenterpriseorganizationsmigratorrole\">\n      <a href=\"#grantenterpriseorganizationsmigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>grantEnterpriseOrganizationsMigratorRole</h2>\n  <p>Grant the migrator role to a user for all organizations under an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#grantenterpriseorganizationsmigratorroleinput\">GrantEnterpriseOrganizationsMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection</a></code>)</p></td>\n<td><p>The organizations that had the migrator role applied to for the given user.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantmigratorrole\">\n      <a href=\"#grantmigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>grantMigratorRole</h2>\n  <p>Grant the migrator role to a user or a team.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#grantmigratorroleinput\">GrantMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Did the operation succeed?.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importproject\">\n      <a href=\"#importproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>importProject</h2>\n  <p>Creates a new project by importing columns and a list of issues/PRs.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>importProject</code> is available under the <a href=\"/en/graphql/overview/schema-previews#import-project-preview\">Import project preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#importprojectinput\">ImportProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new Project!.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"inviteenterpriseadmin\">\n      <a href=\"#inviteenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>inviteEnterpriseAdmin</h2>\n  <p>Invite someone to become an administrator of the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#inviteenterpriseadmininput\">InviteEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitation</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The created enterprise administrator invitation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoproject\">\n      <a href=\"#linkrepositorytoproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>linkRepositoryToProject</h2>\n  <p>Creates a repository link for a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#linkrepositorytoprojectinput\">LinkRepositoryToProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockable\">\n      <a href=\"#locklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>lockLockable</h2>\n  <p>Lock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#locklockableinput\">LockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockedRecord</code> (<code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was locked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswer\">\n      <a href=\"#markdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markDiscussionCommentAsAnswer</h2>\n  <p>Mark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#markdiscussioncommentasanswerinput\">MarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the chosen comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewed\">\n      <a href=\"#markfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markFileAsViewed</h2>\n  <p>Mark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#markfileasviewedinput\">MarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreview\">\n      <a href=\"#markpullrequestreadyforreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markPullRequestReadyForReview</h2>\n  <p>Marks a pull request ready for review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#markpullrequestreadyforreviewinput\">MarkPullRequestReadyForReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is ready for review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranch\">\n      <a href=\"#mergebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergeBranch</h2>\n  <p>Merge a head into a branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#mergebranchinput\">MergeBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The resulting merge Commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequest\">\n      <a href=\"#mergepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergePullRequest</h2>\n  <p>Merge a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#mergepullrequestinput\">MergePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was merged.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecomment\">\n      <a href=\"#minimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>minimizeComment</h2>\n  <p>Minimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#minimizecommentinput\">MinimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedComment</code> (<code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was minimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcard\">\n      <a href=\"#moveprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectCard</h2>\n  <p>Moves a project card to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#moveprojectcardinput\">MoveProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The new edge of the moved card.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumn\">\n      <a href=\"#moveprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectColumn</h2>\n  <p>Moves a project column to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#moveprojectcolumninput\">MoveProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The new edge of the moved column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissue\">\n      <a href=\"#pinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>pinIssue</h2>\n  <p>Pin an issue to a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#pinissueinput\">PinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateenterpriseidentityproviderrecoverycodes\">\n      <a href=\"#regenerateenterpriseidentityproviderrecoverycodes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>regenerateEnterpriseIdentityProviderRecoveryCodes</h2>\n  <p>Regenerates the identity provider recovery codes for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#regenerateenterpriseidentityproviderrecoverycodesinput\">RegenerateEnterpriseIdentityProviderRecoveryCodesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identityProvider</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The identity provider for the enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintoken\">\n      <a href=\"#regenerateverifiabledomaintoken\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>regenerateVerifiableDomainToken</h2>\n  <p>Regenerates a verifiable domain&apos;s verification token.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#regenerateverifiabledomaintokeninput\">RegenerateVerifiableDomainTokenInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The verification token that was generated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeployments\">\n      <a href=\"#rejectdeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rejectDeployments</h2>\n  <p>Reject all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#rejectdeploymentsinput\">RejectDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignable\">\n      <a href=\"#removeassigneesfromassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeAssigneesFromAssignable</h2>\n  <p>Removes assignees from an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removeassigneesfromassignableinput\">RemoveAssigneesFromAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was unassigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmin\">\n      <a href=\"#removeenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseAdmin</h2>\n  <p>Removes an administrator from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removeenterpriseadmininput\">RemoveEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was removed as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseidentityprovider\">\n      <a href=\"#removeenterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseIdentityProvider</h2>\n  <p>Removes the identity provider from an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removeenterpriseidentityproviderinput\">RemoveEnterpriseIdentityProviderInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identityProvider</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The identity provider that was removed from the enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseorganization\">\n      <a href=\"#removeenterpriseorganization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseOrganization</h2>\n  <p>Removes an organization from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removeenterpriseorganizationinput\">RemoveEnterpriseOrganizationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that was removed from the enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterprisesupportentitlement\">\n      <a href=\"#removeenterprisesupportentitlement\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseSupportEntitlement</h2>\n  <p>Removes a support entitlement from an enterprise member.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removeenterprisesupportentitlementinput\">RemoveEnterpriseSupportEntitlementInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing the support entitlement.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelable\">\n      <a href=\"#removelabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeLabelsFromLabelable</h2>\n  <p>Removes labels from a Labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removelabelsfromlabelableinput\">RemoveLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The Labelable the labels were removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaborator\">\n      <a href=\"#removeoutsidecollaborator\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeOutsideCollaborator</h2>\n  <p>Removes outside collaborator from all repositories in an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removeoutsidecollaboratorinput\">RemoveOutsideCollaboratorInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>removedUser</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was removed as an outside collaborator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereaction\">\n      <a href=\"#removereaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeReaction</h2>\n  <p>Removes a reaction from a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removereactioninput\">RemoveReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestar\">\n      <a href=\"#removestar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeStar</h2>\n  <p>Removes a star from a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removestarinput\">RemoveStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvote\">\n      <a href=\"#removeupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeUpvote</h2>\n  <p>Remove an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#removeupvoteinput\">RemoveUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissue\">\n      <a href=\"#reopenissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenIssue</h2>\n  <p>Reopen a issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#reopenissueinput\">ReopenIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequest\">\n      <a href=\"#reopenpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenPullRequest</h2>\n  <p>Reopen a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#reopenpullrequestinput\">ReopenPullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was reopened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviews\">\n      <a href=\"#requestreviews\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>requestReviews</h2>\n  <p>Set review requests on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#requestreviewsinput\">RequestReviewsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is getting requests.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewersEdge</code> (<code><a href=\"/en/graphql/reference/objects#useredge\">UserEdge</a></code>)</p></td>\n<td><p>The edge from the pull request to the requested reviewers.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuite\">\n      <a href=\"#rerequestchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rerequestCheckSuite</h2>\n  <p>Rerequests an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#rerequestchecksuiteinput\">RerequestCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The requested check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthread\">\n      <a href=\"#resolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>resolveReviewThread</h2>\n  <p>Marks a review thread as resolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#resolvereviewthreadinput\">ResolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokeenterpriseorganizationsmigratorrole\">\n      <a href=\"#revokeenterpriseorganizationsmigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>revokeEnterpriseOrganizationsMigratorRole</h2>\n  <p>Revoke the migrator role to a user for all organizations under an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#revokeenterpriseorganizationsmigratorroleinput\">RevokeEnterpriseOrganizationsMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection</a></code>)</p></td>\n<td><p>The organizations that had the migrator role revoked for the given user.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokemigratorrole\">\n      <a href=\"#revokemigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>revokeMigratorRole</h2>\n  <p>Revoke the migrator role from a user or a team.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#revokemigratorroleinput\">RevokeMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Did the operation succeed?.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setenterpriseidentityprovider\">\n      <a href=\"#setenterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>setEnterpriseIdentityProvider</h2>\n  <p>Creates or updates the identity provider for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#setenterpriseidentityproviderinput\">SetEnterpriseIdentityProviderInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identityProvider</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The identity provider for the enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setorganizationinteractionlimit\">\n      <a href=\"#setorganizationinteractionlimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>setOrganizationInteractionLimit</h2>\n  <p>Set an organization level interaction limit for an organization&apos;s public repositories.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#setorganizationinteractionlimitinput\">SetOrganizationInteractionLimitInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that the interaction limit was set for.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setrepositoryinteractionlimit\">\n      <a href=\"#setrepositoryinteractionlimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>setRepositoryInteractionLimit</h2>\n  <p>Sets an interaction limit setting for a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#setrepositoryinteractionlimitinput\">SetRepositoryInteractionLimitInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that the interaction limit was set for.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setuserinteractionlimit\">\n      <a href=\"#setuserinteractionlimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>setUserInteractionLimit</h2>\n  <p>Set a user level interaction limit for an user&apos;s public repositories.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#setuserinteractionlimitinput\">SetUserInteractionLimitInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that the interaction limit was set for.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"startrepositorymigration\">\n      <a href=\"#startrepositorymigration\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>startRepositoryMigration</h2>\n  <p>Start a repository migration.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#startrepositorymigrationinput\">StartRepositoryMigrationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryMigration</code> (<code><a href=\"/en/graphql/reference/objects#repositorymigration\">RepositoryMigration</a></code>)</p></td>\n<td><p>The new Octoshift repository migration.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreview\">\n      <a href=\"#submitpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>submitPullRequestReview</h2>\n  <p>Submits a pending pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#submitpullrequestreviewinput\">SubmitPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The submitted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissue\">\n      <a href=\"#transferissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>transferIssue</h2>\n  <p>Transfer an issue to a different repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#transferissueinput\">TransferIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was transferred.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepository\">\n      <a href=\"#unarchiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unarchiveRepository</h2>\n  <p>Unarchives a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unarchiverepositoryinput\">UnarchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was unarchived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuser\">\n      <a href=\"#unfollowuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unfollowUser</h2>\n  <p>Unfollow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unfollowuserinput\">UnfollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was unfollowed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromproject\">\n      <a href=\"#unlinkrepositoryfromproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlinkRepositoryFromProject</h2>\n  <p>Deletes a repository link from a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unlinkrepositoryfromprojectinput\">UnlinkRepositoryFromProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockable\">\n      <a href=\"#unlocklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlockLockable</h2>\n  <p>Unlock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unlocklockableinput\">UnlockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unlockedRecord</code> (<code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was unlocked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswer\">\n      <a href=\"#unmarkdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkDiscussionCommentAsAnswer</h2>\n  <p>Unmark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unmarkdiscussioncommentasanswerinput\">UnmarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewed\">\n      <a href=\"#unmarkfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkFileAsViewed</h2>\n  <p>Unmark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unmarkfileasviewedinput\">UnmarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicate\">\n      <a href=\"#unmarkissueasduplicate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkIssueAsDuplicate</h2>\n  <p>Unmark an issue as a duplicate of another issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unmarkissueasduplicateinput\">UnmarkIssueAsDuplicateInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request that was marked as a duplicate.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecomment\">\n      <a href=\"#unminimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unminimizeComment</h2>\n  <p>Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unminimizecommentinput\">UnminimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unminimizedComment</code> (<code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was unminimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissue\">\n      <a href=\"#unpinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unpinIssue</h2>\n  <p>Unpin a pinned issue from a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unpinissueinput\">UnpinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was unpinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthread\">\n      <a href=\"#unresolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unresolveReviewThread</h2>\n  <p>Marks a review thread as unresolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#unresolvereviewthreadinput\">UnresolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionrule\">\n      <a href=\"#updatebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatebranchprotectionruleinput\">UpdateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckrun\">\n      <a href=\"#updatecheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckRun</h2>\n  <p>Update a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatecheckruninput\">UpdateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The updated check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferences\">\n      <a href=\"#updatechecksuitepreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckSuitePreferences</h2>\n  <p>Modifies the settings of an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatechecksuitepreferencesinput\">UpdateCheckSuitePreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussion\">\n      <a href=\"#updatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussion</h2>\n  <p>Update a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatediscussioninput\">UpdateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The modified discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncomment\">\n      <a href=\"#updatediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussionComment</h2>\n  <p>Update the contents of a comment on a Discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatediscussioncommentinput\">UpdateDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The modified discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseadministratorrole\">\n      <a href=\"#updateenterpriseadministratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAdministratorRole</h2>\n  <p>Updates the role of an enterprise administrator.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterpriseadministratorroleinput\">UpdateEnterpriseAdministratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of changing the administrator&apos;s role.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterpriseallowprivaterepositoryforkingsettinginput\">UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsetting\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseDefaultRepositoryPermissionSetting</h2>\n  <p>Sets the base repository permission for organizations in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisedefaultrepositorypermissionsettinginput\">UpdateEnterpriseDefaultRepositoryPermissionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</h2>\n  <p>Sets whether organization members with admin permissions on a repository can change repository visibility.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessetting\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanCreateRepositoriesSetting</h2>\n  <p>Sets the members can create repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisememberscancreaterepositoriessettinginput\">UpdateEnterpriseMembersCanCreateRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessetting\">\n      <a href=\"#updateenterprisememberscandeleteissuessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteIssuesSetting</h2>\n  <p>Sets the members can delete issues setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisememberscandeleteissuessettinginput\">UpdateEnterpriseMembersCanDeleteIssuesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessetting\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteRepositoriesSetting</h2>\n  <p>Sets the members can delete repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisememberscandeleterepositoriessettinginput\">UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssetting\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanInviteCollaboratorsSetting</h2>\n  <p>Sets whether members can invite collaborators are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisememberscaninvitecollaboratorssettinginput\">UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessetting\">\n      <a href=\"#updateenterprisememberscanmakepurchasessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanMakePurchasesSetting</h2>\n  <p>Sets whether or not an organization admin can make purchases.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisememberscanmakepurchasessettinginput\">UpdateEnterpriseMembersCanMakePurchasesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessetting\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanUpdateProtectedBranchesSetting</h2>\n  <p>Sets the members can update protected branches setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisememberscanupdateprotectedbranchessettinginput\">UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssetting\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanViewDependencyInsightsSetting</h2>\n  <p>Sets the members can view dependency insights for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisememberscanviewdependencyinsightssettinginput\">UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssetting\">\n      <a href=\"#updateenterpriseorganizationprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOrganizationProjectsSetting</h2>\n  <p>Sets whether organization projects are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterpriseorganizationprojectssettinginput\">UpdateEnterpriseOrganizationProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseownerorganizationrole\">\n      <a href=\"#updateenterpriseownerorganizationrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOwnerOrganizationRole</h2>\n  <p>Updates the role of an enterprise owner with an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterpriseownerorganizationroleinput\">UpdateEnterpriseOwnerOrganizationRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of changing the owner&apos;s organization role.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofile\">\n      <a href=\"#updateenterpriseprofile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseProfile</h2>\n  <p>Updates an enterprise&apos;s profile.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterpriseprofileinput\">UpdateEnterpriseProfileInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssetting\">\n      <a href=\"#updateenterpriserepositoryprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseRepositoryProjectsSetting</h2>\n  <p>Sets whether repository projects are enabled for a enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterpriserepositoryprojectssettinginput\">UpdateEnterpriseRepositoryProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssetting\">\n      <a href=\"#updateenterpriseteamdiscussionssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTeamDiscussionsSetting</h2>\n  <p>Sets whether team discussions are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterpriseteamdiscussionssettinginput\">UpdateEnterpriseTeamDiscussionsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsetting\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTwoFactorAuthenticationRequiredSetting</h2>\n  <p>Sets whether two factor authentication is required for all users in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenterprisetwofactorauthenticationrequiredsettinginput\">UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironment\">\n      <a href=\"#updateenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnvironment</h2>\n  <p>Updates an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateenvironmentinput\">UpdateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The updated environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsetting\">\n      <a href=\"#updateipallowlistenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEnabledSetting</h2>\n  <p>Sets whether an IP allow list is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateipallowlistenabledsettinginput\">UpdateIpAllowListEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentry\">\n      <a href=\"#updateipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEntry</h2>\n  <p>Updates an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateipallowlistentryinput\">UpdateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsetting\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListForInstalledAppsEnabledSetting</h2>\n  <p>Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateipallowlistforinstalledappsenabledsettinginput\">UpdateIpAllowListForInstalledAppsEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissue\">\n      <a href=\"#updateissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssue</h2>\n  <p>Updates an Issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateissueinput\">UpdateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecomment\">\n      <a href=\"#updateissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssueComment</h2>\n  <p>Updates an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateissuecommentinput\">UpdateIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComment</code> (<code><a href=\"/en/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabel\">\n      <a href=\"#updatelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateLabel</h2>\n  <p>Updates an existing label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateLabel</code> is available under the <a href=\"/en/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatelabelinput\">UpdateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The updated label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsetting\">\n      <a href=\"#updatenotificationrestrictionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateNotificationRestrictionSetting</h2>\n  <p>Update the setting to restrict notifications to only verified or approved domains available to an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatenotificationrestrictionsettinginput\">UpdateNotificationRestrictionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateOrganizationAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput\">UpdateOrganizationAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateproject\">\n      <a href=\"#updateproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProject</h2>\n  <p>Updates an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateprojectinput\">UpdateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The updated project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcard\">\n      <a href=\"#updateprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectCard</h2>\n  <p>Updates an existing project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateprojectcardinput\">UpdateProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumn\">\n      <a href=\"#updateprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectColumn</h2>\n  <p>Updates an existing project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateprojectcolumninput\">UpdateProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The updated project column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnext\">\n      <a href=\"#updateprojectnext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectNext</h2>\n  <p>Updates an existing project (beta).</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateprojectnextinput\">UpdateProjectNextInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>The updated Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextitemfield\">\n      <a href=\"#updateprojectnextitemfield\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectNextItemField</h2>\n  <p>Updates a field of an item from a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateprojectnextitemfieldinput\">UpdateProjectNextItemFieldInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItem</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitem\">ProjectNextItem</a></code>)</p></td>\n<td><p>The updated item.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequest\">\n      <a href=\"#updatepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequest</h2>\n  <p>Update a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatepullrequestinput\">UpdatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranch\">\n      <a href=\"#updatepullrequestbranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestBranch</h2>\n  <p>Merge HEAD from upstream branch into pull request branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatepullrequestbranchinput\">UpdatePullRequestBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreview\">\n      <a href=\"#updatepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReview</h2>\n  <p>Updates the body of a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatepullrequestreviewinput\">UpdatePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The updated pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcomment\">\n      <a href=\"#updatepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReviewComment</h2>\n  <p>Updates a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatepullrequestreviewcommentinput\">UpdatePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewComment</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateref\">\n      <a href=\"#updateref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRef</h2>\n  <p>Update a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updaterefinput\">UpdateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The updated Ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefs\">\n      <a href=\"#updaterefs\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRefs</h2>\n  <p>Creates, updates and/or deletes multiple refs in a repository.</p>\n<p>This mutation takes a list of <code>RefUpdate</code>s 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.</p>\n<p><code>RefUpdate.beforeOid</code> specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to verify that\nthe references should not exist.</p>\n<p><code>RefUpdate.afterOid</code> specifies the value that the given reference\nwill point to after performing all updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to delete a\nreference.</p>\n<p>If <code>RefUpdate.force</code> is set to <code>true</code>, a non-fast-forward updates\nfor the given reference will be allowed.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateRefs</code> is available under the <a href=\"/en/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updaterefsinput\">UpdateRefsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepository\">\n      <a href=\"#updaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRepository</h2>\n  <p>Update information about a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updaterepositoryinput\">UpdateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesponsorshippreferences\">\n      <a href=\"#updatesponsorshippreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSponsorshipPreferences</h2>\n  <p>Change visibility of your sponsorship and opt in or out of email updates from the maintainer.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatesponsorshippreferencesinput\">UpdateSponsorshipPreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorship</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscription\">\n      <a href=\"#updatesubscription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSubscription</h2>\n  <p>Updates the state for subscribable subjects.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatesubscriptioninput\">UpdateSubscriptionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>)</p></td>\n<td><p>The input subscribable entity.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussion\">\n      <a href=\"#updateteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussion</h2>\n  <p>Updates a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateteamdiscussioninput\">UpdateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The updated discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncomment\">\n      <a href=\"#updateteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussionComment</h2>\n  <p>Updates a discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateteamdiscussioncommentinput\">UpdateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignment\">\n      <a href=\"#updateteamreviewassignment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamReviewAssignment</h2>\n  <p>Updates team review assignment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateTeamReviewAssignment</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updateteamreviewassignmentinput\">UpdateTeamReviewAssignmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team that was modified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopics\">\n      <a href=\"#updatetopics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTopics</h2>\n  <p>Replaces the repository&apos;s topics with the given topics.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#updatetopicsinput\">UpdateTopicsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invalidTopicNames</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Names of the provided topics that are not valid.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomain\">\n      <a href=\"#verifyverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>verifyVerifiableDomain</h2>\n  <p>Verify that a verifiable domain has the expected DNS record.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/graphql/reference/input-objects#verifyverifiabledomaininput\">VerifyVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was verified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#abortqueuedmigrations\">\n      abortQueuedMigrations</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#abortqueuedmigrations\">\n      abortQueuedMigrations</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#acceptenterpriseadministratorinvitation\">\n      acceptEnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#acceptenterpriseadministratorinvitation\">\n      acceptEnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#accepttopicsuggestion\">\n      acceptTopicSuggestion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#accepttopicsuggestion\">\n      acceptTopicSuggestion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcomment\">\n      addComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcomment\">\n      addComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterprisesupportentitlement\">\n      addEnterpriseSupportEntitlement</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterprisesupportentitlement\">\n      addEnterpriseSupportEntitlement</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcard\">\n      addProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcard\">\n      addProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectnextitem\">\n      addProjectNextItem</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectnextitem\">\n      addProjectNextItem</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreaction\">\n      addReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreaction\">\n      addReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstar\">\n      addStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstar\">\n      addStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvote\">\n      addUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvote\">\n      addUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeployments\">\n      approveDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeployments\">\n      approveDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepository\">\n      archiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepository\">\n      archiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cancelenterpriseadmininvitation\">\n      cancelEnterpriseAdminInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cancelenterpriseadmininvitation\">\n      cancelEnterpriseAdminInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cancelsponsorship\">\n      cancelSponsorship</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cancelsponsorship\">\n      cancelSponsorship</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneproject\">\n      cloneProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneproject\">\n      cloneProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissue\">\n      closeIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissue\">\n      closeIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequest\">\n      closePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequest\">\n      closePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckrun\">\n      createCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckrun\">\n      createCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeployment\">\n      createDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeployment\">\n      createDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussion\">\n      createDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussion\">\n      createDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironment\">\n      createEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironment\">\n      createEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissue\">\n      createIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissue\">\n      createIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabel\">\n      createLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabel\">\n      createLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createmigrationsource\">\n      createMigrationSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createmigrationsource\">\n      createMigrationSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createproject\">\n      createProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createproject\">\n      createProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequest\">\n      createPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequest\">\n      createPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createref\">\n      createRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createref\">\n      createRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepository\">\n      createRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepository\">\n      createRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createsponsorship\">\n      createSponsorship</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createsponsorship\">\n      createSponsorship</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#declinetopicsuggestion\">\n      declineTopicSuggestion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#declinetopicsuggestion\">\n      declineTopicSuggestion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissue\">\n      deleteIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissue\">\n      deleteIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabel\">\n      deleteLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabel\">\n      deleteLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteproject\">\n      deleteProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteproject\">\n      deleteProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectnextitem\">\n      deleteProjectNextItem</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectnextitem\">\n      deleteProjectNextItem</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteref\">\n      deleteRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteref\">\n      deleteRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismissrepositoryvulnerabilityalert\">\n      dismissRepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismissrepositoryvulnerabilityalert\">\n      dismissRepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuser\">\n      followUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuser\">\n      followUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantenterpriseorganizationsmigratorrole\">\n      grantEnterpriseOrganizationsMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantenterpriseorganizationsmigratorrole\">\n      grantEnterpriseOrganizationsMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantmigratorrole\">\n      grantMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantmigratorrole\">\n      grantMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importproject\">\n      importProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importproject\">\n      importProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#inviteenterpriseadmin\">\n      inviteEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#inviteenterpriseadmin\">\n      inviteEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockable\">\n      lockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockable\">\n      lockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranch\">\n      mergeBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranch\">\n      mergeBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecomment\">\n      minimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecomment\">\n      minimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissue\">\n      pinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissue\">\n      pinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateenterpriseidentityproviderrecoverycodes\">\n      regenerateEnterpriseIdentityProviderRecoveryCodes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateenterpriseidentityproviderrecoverycodes\">\n      regenerateEnterpriseIdentityProviderRecoveryCodes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseidentityprovider\">\n      removeEnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseidentityprovider\">\n      removeEnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseorganization\">\n      removeEnterpriseOrganization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseorganization\">\n      removeEnterpriseOrganization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterprisesupportentitlement\">\n      removeEnterpriseSupportEntitlement</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterprisesupportentitlement\">\n      removeEnterpriseSupportEntitlement</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereaction\">\n      removeReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereaction\">\n      removeReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestar\">\n      removeStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestar\">\n      removeStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvote\">\n      removeUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvote\">\n      removeUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissue\">\n      reopenIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissue\">\n      reopenIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviews\">\n      requestReviews</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviews\">\n      requestReviews</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokeenterpriseorganizationsmigratorrole\">\n      revokeEnterpriseOrganizationsMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokeenterpriseorganizationsmigratorrole\">\n      revokeEnterpriseOrganizationsMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokemigratorrole\">\n      revokeMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokemigratorrole\">\n      revokeMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setenterpriseidentityprovider\">\n      setEnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setenterpriseidentityprovider\">\n      setEnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setorganizationinteractionlimit\">\n      setOrganizationInteractionLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setorganizationinteractionlimit\">\n      setOrganizationInteractionLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setrepositoryinteractionlimit\">\n      setRepositoryInteractionLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setrepositoryinteractionlimit\">\n      setRepositoryInteractionLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setuserinteractionlimit\">\n      setUserInteractionLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setuserinteractionlimit\">\n      setUserInteractionLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#startrepositorymigration\">\n      startRepositoryMigration</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#startrepositorymigration\">\n      startRepositoryMigration</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissue\">\n      transferIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissue\">\n      transferIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuser\">\n      unfollowUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuser\">\n      unfollowUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockable\">\n      unlockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockable\">\n      unlockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissue\">\n      unpinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissue\">\n      unpinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseadministratorrole\">\n      updateEnterpriseAdministratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseadministratorrole\">\n      updateEnterpriseAdministratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseownerorganizationrole\">\n      updateEnterpriseOwnerOrganizationRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseownerorganizationrole\">\n      updateEnterpriseOwnerOrganizationRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissue\">\n      updateIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissue\">\n      updateIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabel\">\n      updateLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabel\">\n      updateLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateorganizationallowprivaterepositoryforkingsetting\">\n      updateOrganizationAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateorganizationallowprivaterepositoryforkingsetting\">\n      updateOrganizationAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateproject\">\n      updateProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateproject\">\n      updateProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectnext\">\n      updateProjectNext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectnext\">\n      updateProjectNext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectnextitemfield\">\n      updateProjectNextItemField</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectnextitemfield\">\n      updateProjectNextItemField</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestbranch\">\n      updatePullRequestBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestbranch\">\n      updatePullRequestBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateref\">\n      updateRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateref\">\n      updateRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefs\">\n      updateRefs</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefs\">\n      updateRefs</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepository\">\n      updateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepository\">\n      updateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesponsorshippreferences\">\n      updateSponsorshipPreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesponsorshippreferences\">\n      updateSponsorshipPreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscription\">\n      updateSubscription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscription\">\n      updateSubscription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopics\">\n      updateTopics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopics\">\n      updateTopics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -1261,1253 +1261,1253 @@
     "html": "<div>\n  <div>\n    <h2 id=\"abortqueuedmigrations\">\n      <a href=\"#abortqueuedmigrations\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>abortQueuedMigrations</h2>\n  <p>Clear all of a customer&apos;s queued migrations.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#abortqueuedmigrationsinput\">AbortQueuedMigrationsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Did the operation succeed?.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"acceptenterpriseadministratorinvitation\">\n      <a href=\"#acceptenterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>acceptEnterpriseAdministratorInvitation</h2>\n  <p>Accepts a pending invitation for a user to become an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#acceptenterpriseadministratorinvitationinput\">AcceptEnterpriseAdministratorInvitationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The invitation that was accepted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of accepting an administrator invitation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"accepttopicsuggestion\">\n      <a href=\"#accepttopicsuggestion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>acceptTopicSuggestion</h2>\n  <p>Applies a suggested topic to the repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#accepttopicsuggestioninput\">AcceptTopicSuggestionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The accepted topic.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addassigneestoassignable\">\n      <a href=\"#addassigneestoassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addAssigneesToAssignable</h2>\n  <p>Adds assignees to an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addassigneestoassignableinput\">AddAssigneesToAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was assigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcomment\">\n      <a href=\"#addcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addComment</h2>\n  <p>Adds a comment to an Issue or Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addcommentinput\">AddCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecommentedge\">IssueCommentEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>)</p></td>\n<td><p>The subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineEdge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetimelineitemedge\">IssueTimelineItemEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s timeline connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncomment\">\n      <a href=\"#adddiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addDiscussionComment</h2>\n  <p>Adds a comment to a Discussion, possibly as a reply to another comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#adddiscussioncommentinput\">AddDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The newly created discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterprisesupportentitlement\">\n      <a href=\"#addenterprisesupportentitlement\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addEnterpriseSupportEntitlement</h2>\n  <p>Adds a support entitlement to an enterprise member.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addenterprisesupportentitlementinput\">AddEnterpriseSupportEntitlementInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of adding the support entitlement.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelable\">\n      <a href=\"#addlabelstolabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addLabelsToLabelable</h2>\n  <p>Adds labels to a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addlabelstolabelableinput\">AddLabelsToLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was labeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcard\">\n      <a href=\"#addprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectCard</h2>\n  <p>Adds a card to a ProjectColumn. Either <code>contentId</code> or <code>note</code> must be provided but <strong>not</strong> both.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addprojectcardinput\">AddProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The edge from the ProjectColumn&apos;s card connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The ProjectColumn.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumn\">\n      <a href=\"#addprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectColumn</h2>\n  <p>Adds a column to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addprojectcolumninput\">AddProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The edge from the project&apos;s column connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectnextitem\">\n      <a href=\"#addprojectnextitem\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectNextItem</h2>\n  <p>Adds an existing item (Issue or PullRequest) to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addprojectnextiteminput\">AddProjectNextItemInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItem</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitem\">ProjectNextItem</a></code>)</p></td>\n<td><p>The item added to the project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreview\">\n      <a href=\"#addpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReview</h2>\n  <p>Adds a review to a Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addpullrequestreviewinput\">AddPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The newly created pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewEdge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewedge\">PullRequestReviewEdge</a></code>)</p></td>\n<td><p>The edge from the pull request&apos;s review connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcomment\">\n      <a href=\"#addpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewComment</h2>\n  <p>Adds a comment to a review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addpullrequestreviewcommentinput\">AddPullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The newly created comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcommentedge\">PullRequestReviewCommentEdge</a></code>)</p></td>\n<td><p>The edge from the review&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthread\">\n      <a href=\"#addpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewThread</h2>\n  <p>Adds a new thread to a pending Pull Request Review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addpullrequestreviewthreadinput\">AddPullRequestReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The newly created thread.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreaction\">\n      <a href=\"#addreaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addReaction</h2>\n  <p>Adds a reaction to a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addreactioninput\">AddReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstar\">\n      <a href=\"#addstar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addStar</h2>\n  <p>Adds a star to a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addstarinput\">AddStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvote\">\n      <a href=\"#addupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addUpvote</h2>\n  <p>Add an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addupvoteinput\">AddUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomain\">\n      <a href=\"#addverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addVerifiableDomain</h2>\n  <p>Adds a verifiable domain to an owning account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#addverifiabledomaininput\">AddVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was added.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeployments\">\n      <a href=\"#approvedeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveDeployments</h2>\n  <p>Approve all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#approvedeploymentsinput\">ApproveDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomain\">\n      <a href=\"#approveverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveVerifiableDomain</h2>\n  <p>Approve a verifiable domain for notification delivery.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#approveverifiabledomaininput\">ApproveVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was approved.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepository\">\n      <a href=\"#archiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>archiveRepository</h2>\n  <p>Marks a repository as archived.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#archiverepositoryinput\">ArchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was marked as archived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelenterpriseadmininvitation\">\n      <a href=\"#cancelenterpriseadmininvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cancelEnterpriseAdminInvitation</h2>\n  <p>Cancels a pending invitation for an administrator to join an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#cancelenterpriseadmininvitationinput\">CancelEnterpriseAdminInvitationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The invitation that was canceled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of canceling an administrator invitation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cancelsponsorship\">\n      <a href=\"#cancelsponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cancelSponsorship</h2>\n  <p>Cancel an active sponsorship.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#cancelsponsorshipinput\">CancelSponsorshipInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsTier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The tier that was being used at the time of cancellation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatus\">\n      <a href=\"#changeuserstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>changeUserStatus</h2>\n  <p>Update your status on GitHub.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#changeuserstatusinput\">ChangeUserStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>Your updated status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelable\">\n      <a href=\"#clearlabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>clearLabelsFromLabelable</h2>\n  <p>Clears all labels from a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#clearlabelsfromlabelableinput\">ClearLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was unlabeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneproject\">\n      <a href=\"#cloneproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneProject</h2>\n  <p>Creates a new project by cloning configuration from an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#cloneprojectinput\">CloneProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>jobStatusId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The id of the JobStatus for populating cloned fields.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new cloned project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepository\">\n      <a href=\"#clonetemplaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneTemplateRepository</h2>\n  <p>Create a new repository with the same files and directory structure as a template repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#clonetemplaterepositoryinput\">CloneTemplateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissue\">\n      <a href=\"#closeissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closeIssue</h2>\n  <p>Close an issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#closeissueinput\">CloseIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequest\">\n      <a href=\"#closepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closePullRequest</h2>\n  <p>Close a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#closepullrequestinput\">ClosePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissue\">\n      <a href=\"#convertprojectcardnotetoissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertProjectCardNoteToIssue</h2>\n  <p>Convert a project note card to one associated with a newly created issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#convertprojectcardnotetoissueinput\">ConvertProjectCardNoteToIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraft\">\n      <a href=\"#convertpullrequesttodraft\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertPullRequestToDraft</h2>\n  <p>Converts a pull request to draft.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#convertpullrequesttodraftinput\">ConvertPullRequestToDraftInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is now a draft.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionrule\">\n      <a href=\"#createbranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createbranchprotectionruleinput\">CreateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckrun\">\n      <a href=\"#createcheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckRun</h2>\n  <p>Create a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createcheckruninput\">CreateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The newly created check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuite\">\n      <a href=\"#createchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckSuite</h2>\n  <p>Create a check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createchecksuiteinput\">CreateCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The newly created check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranch\">\n      <a href=\"#createcommitonbranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCommitOnBranch</h2>\n  <p>Appends a commit to the given branch as the authenticated user.</p>\n<p>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 <code>git commit</code>.</p>\n<h3 id=\"locating-a-branch\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#locating-a-branch\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Locating a Branch</h3>\n<p>Commits are appended to a <code>branch</code> of type <code>Ref</code>.\nThis must refer to a git branch (i.e.  the fully qualified path must\nbegin with <code>refs/heads/</code>, although including this prefix is optional.</p>\n<p>Callers may specify the <code>branch</code> to commit to either by its global node\nID or by passing both of <code>repositoryNameWithOwner</code> and <code>refName</code>.  For\nmore details see the documentation for <code>CommittableBranch</code>.</p>\n<h3 id=\"describing-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#describing-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Describing Changes</h3>\n<p><code>fileChanges</code> are specified as a <code>FilesChanges</code> object describing\n<code>FileAdditions</code> and <code>FileDeletions</code>.</p>\n<p>Please see the documentation for <code>FileChanges</code> for more information on\nhow to use this argument to describe any set of file changes.</p>\n<h3 id=\"authorship\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#authorship\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Authorship</h3>\n<p>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.</p>\n<p>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.</p>\n<p>If you need full control over author and committer information, please\nuse the Git Database REST API instead.</p>\n<h3 id=\"commit-signing\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#commit-signing\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Commit Signing</h3>\n<p>Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createcommitonbranchinput\">CreateCommitOnBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref which has been updated to point to the new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeployment\">\n      <a href=\"#createdeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeployment</h2>\n  <p>Creates a new deployment event.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeployment</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createdeploymentinput\">CreateDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerged</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>True if the default branch has been auto-merged into the deployment ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The new deployment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatus\">\n      <a href=\"#createdeploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeploymentStatus</h2>\n  <p>Create a deployment status.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeploymentStatus</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createdeploymentstatusinput\">CreateDeploymentStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The new deployment status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussion\">\n      <a href=\"#creatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDiscussion</h2>\n  <p>Create a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#creatediscussioninput\">CreateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganization\">\n      <a href=\"#createenterpriseorganization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnterpriseOrganization</h2>\n  <p>Creates an organization as part of an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createenterpriseorganizationinput\">CreateEnterpriseOrganizationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise that owns the created organization.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironment\">\n      <a href=\"#createenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnvironment</h2>\n  <p>Creates an environment or simply returns it if already exists.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createenvironmentinput\">CreateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The new or existing environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentry\">\n      <a href=\"#createipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIpAllowListEntry</h2>\n  <p>Creates a new IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createipallowlistentryinput\">CreateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissue\">\n      <a href=\"#createissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIssue</h2>\n  <p>Creates a new issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createissueinput\">CreateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The new issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabel\">\n      <a href=\"#createlabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createLabel</h2>\n  <p>Creates a new label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createLabel</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createlabelinput\">CreateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The new label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createmigrationsource\">\n      <a href=\"#createmigrationsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createMigrationSource</h2>\n  <p>Creates an Octoshift migration source.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createmigrationsourceinput\">CreateMigrationSourceInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>migrationSource</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#migrationsource\">MigrationSource</a></code>)</p></td>\n<td><p>The created Octoshift migration source.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createproject\">\n      <a href=\"#createproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createProject</h2>\n  <p>Creates a new project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createprojectinput\">CreateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequest\">\n      <a href=\"#createpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createPullRequest</h2>\n  <p>Create a new pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createpullrequestinput\">CreatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The new pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createref\">\n      <a href=\"#createref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRef</h2>\n  <p>Create a new Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createrefinput\">CreateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The newly created ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepository\">\n      <a href=\"#createrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRepository</h2>\n  <p>Create a new repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createrepositoryinput\">CreateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createsponsorship\">\n      <a href=\"#createsponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createSponsorship</h2>\n  <p>Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createsponsorshipinput\">CreateSponsorshipInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorship</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship that was started.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussion\">\n      <a href=\"#createteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussion</h2>\n  <p>Creates a new team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createteamdiscussioninput\">CreateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The new discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncomment\">\n      <a href=\"#createteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussionComment</h2>\n  <p>Creates a new team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#createteamdiscussioncommentinput\">CreateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The new comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"declinetopicsuggestion\">\n      <a href=\"#declinetopicsuggestion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>declineTopicSuggestion</h2>\n  <p>Rejects a suggested topic for the repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#declinetopicsuggestioninput\">DeclineTopicSuggestionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The declined topic.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionrule\">\n      <a href=\"#deletebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteBranchProtectionRule</h2>\n  <p>Delete a branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deletebranchprotectionruleinput\">DeleteBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeployment\">\n      <a href=\"#deletedeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDeployment</h2>\n  <p>Deletes a deployment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deletedeploymentinput\">DeleteDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussion\">\n      <a href=\"#deletediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussion</h2>\n  <p>Delete a discussion and all of its replies.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deletediscussioninput\">DeleteDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncomment\">\n      <a href=\"#deletediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussionComment</h2>\n  <p>Delete a discussion comment. If it has replies, wipe it instead.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deletediscussioncommentinput\">DeleteDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironment\">\n      <a href=\"#deleteenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteEnvironment</h2>\n  <p>Deletes an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteenvironmentinput\">DeleteEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentry\">\n      <a href=\"#deleteipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIpAllowListEntry</h2>\n  <p>Deletes an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteipallowlistentryinput\">DeleteIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissue\">\n      <a href=\"#deleteissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssue</h2>\n  <p>Deletes an Issue object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteissueinput\">DeleteIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository the issue belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecomment\">\n      <a href=\"#deleteissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssueComment</h2>\n  <p>Deletes an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteissuecommentinput\">DeleteIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabel\">\n      <a href=\"#deletelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteLabel</h2>\n  <p>Deletes a label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deleteLabel</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deletelabelinput\">DeleteLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversion\">\n      <a href=\"#deletepackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePackageVersion</h2>\n  <p>Delete a package version.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deletePackageVersion</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-package-version-deletion-preview\">Access to package version deletion preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deletepackageversioninput\">DeletePackageVersionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the operation succeeded.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteproject\">\n      <a href=\"#deleteproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProject</h2>\n  <p>Deletes a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteprojectinput\">DeleteProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>)</p></td>\n<td><p>The repository or organization the project was removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcard\">\n      <a href=\"#deleteprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectCard</h2>\n  <p>Deletes a project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteprojectcardinput\">DeleteProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The column the deleted card was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCardId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted card ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumn\">\n      <a href=\"#deleteprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectColumn</h2>\n  <p>Deletes a project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteprojectcolumninput\">DeleteProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedColumnId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted column ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project the deleted column was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectnextitem\">\n      <a href=\"#deleteprojectnextitem\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectNextItem</h2>\n  <p>Deletes an item from a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteprojectnextiteminput\">DeleteProjectNextItemInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedItemId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The ID of the deleted item.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreview\">\n      <a href=\"#deletepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReview</h2>\n  <p>Deletes a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deletepullrequestreviewinput\">DeletePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The deleted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcomment\">\n      <a href=\"#deletepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReviewComment</h2>\n  <p>Deletes a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deletepullrequestreviewcommentinput\">DeletePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review the deleted comment belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteref\">\n      <a href=\"#deleteref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteRef</h2>\n  <p>Delete a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleterefinput\">DeleteRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussion\">\n      <a href=\"#deleteteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussion</h2>\n  <p>Deletes a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteteamdiscussioninput\">DeleteTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncomment\">\n      <a href=\"#deleteteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussionComment</h2>\n  <p>Deletes a team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteteamdiscussioncommentinput\">DeleteTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomain\">\n      <a href=\"#deleteverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteVerifiableDomain</h2>\n  <p>Deletes a verifiable domain.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deleteverifiabledomaininput\">DeleteVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owning account from which the domain was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomerge\">\n      <a href=\"#disablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>disablePullRequestAutoMerge</h2>\n  <p>Disable auto merge on the given pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#disablepullrequestautomergeinput\">DisablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto merge was disabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreview\">\n      <a href=\"#dismisspullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissPullRequestReview</h2>\n  <p>Dismisses an approved or rejected pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#dismisspullrequestreviewinput\">DismissPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The dismissed pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalert\">\n      <a href=\"#dismissrepositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissRepositoryVulnerabilityAlert</h2>\n  <p>Dismisses the Dependabot alert.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput\">DismissRepositoryVulnerabilityAlertInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlert</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The Dependabot alert that was dismissed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomerge\">\n      <a href=\"#enablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>enablePullRequestAutoMerge</h2>\n  <p>Enable the default auto-merge on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enablepullrequestautomergeinput\">EnablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto-merge was enabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuser\">\n      <a href=\"#followuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>followUser</h2>\n  <p>Follow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#followuserinput\">FollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was followed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantenterpriseorganizationsmigratorrole\">\n      <a href=\"#grantenterpriseorganizationsmigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>grantEnterpriseOrganizationsMigratorRole</h2>\n  <p>Grant the migrator role to a user for all organizations under an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#grantenterpriseorganizationsmigratorroleinput\">GrantEnterpriseOrganizationsMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection</a></code>)</p></td>\n<td><p>The organizations that had the migrator role applied to for the given user.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantmigratorrole\">\n      <a href=\"#grantmigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>grantMigratorRole</h2>\n  <p>Grant the migrator role to a user or a team.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#grantmigratorroleinput\">GrantMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Did the operation succeed?.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importproject\">\n      <a href=\"#importproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>importProject</h2>\n  <p>Creates a new project by importing columns and a list of issues/PRs.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>importProject</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#import-project-preview\">Import project preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#importprojectinput\">ImportProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new Project!.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"inviteenterpriseadmin\">\n      <a href=\"#inviteenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>inviteEnterpriseAdmin</h2>\n  <p>Invite someone to become an administrator of the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#inviteenterpriseadmininput\">InviteEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The created enterprise administrator invitation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoproject\">\n      <a href=\"#linkrepositorytoproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>linkRepositoryToProject</h2>\n  <p>Creates a repository link for a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#linkrepositorytoprojectinput\">LinkRepositoryToProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockable\">\n      <a href=\"#locklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>lockLockable</h2>\n  <p>Lock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#locklockableinput\">LockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockedRecord</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was locked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswer\">\n      <a href=\"#markdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markDiscussionCommentAsAnswer</h2>\n  <p>Mark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#markdiscussioncommentasanswerinput\">MarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the chosen comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewed\">\n      <a href=\"#markfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markFileAsViewed</h2>\n  <p>Mark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#markfileasviewedinput\">MarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreview\">\n      <a href=\"#markpullrequestreadyforreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markPullRequestReadyForReview</h2>\n  <p>Marks a pull request ready for review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#markpullrequestreadyforreviewinput\">MarkPullRequestReadyForReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is ready for review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranch\">\n      <a href=\"#mergebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergeBranch</h2>\n  <p>Merge a head into a branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#mergebranchinput\">MergeBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The resulting merge Commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequest\">\n      <a href=\"#mergepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergePullRequest</h2>\n  <p>Merge a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#mergepullrequestinput\">MergePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was merged.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecomment\">\n      <a href=\"#minimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>minimizeComment</h2>\n  <p>Minimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#minimizecommentinput\">MinimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedComment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was minimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcard\">\n      <a href=\"#moveprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectCard</h2>\n  <p>Moves a project card to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#moveprojectcardinput\">MoveProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The new edge of the moved card.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumn\">\n      <a href=\"#moveprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectColumn</h2>\n  <p>Moves a project column to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#moveprojectcolumninput\">MoveProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The new edge of the moved column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissue\">\n      <a href=\"#pinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>pinIssue</h2>\n  <p>Pin an issue to a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#pinissueinput\">PinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateenterpriseidentityproviderrecoverycodes\">\n      <a href=\"#regenerateenterpriseidentityproviderrecoverycodes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>regenerateEnterpriseIdentityProviderRecoveryCodes</h2>\n  <p>Regenerates the identity provider recovery codes for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#regenerateenterpriseidentityproviderrecoverycodesinput\">RegenerateEnterpriseIdentityProviderRecoveryCodesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identityProvider</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The identity provider for the enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintoken\">\n      <a href=\"#regenerateverifiabledomaintoken\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>regenerateVerifiableDomainToken</h2>\n  <p>Regenerates a verifiable domain&apos;s verification token.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#regenerateverifiabledomaintokeninput\">RegenerateVerifiableDomainTokenInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The verification token that was generated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeployments\">\n      <a href=\"#rejectdeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rejectDeployments</h2>\n  <p>Reject all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#rejectdeploymentsinput\">RejectDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignable\">\n      <a href=\"#removeassigneesfromassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeAssigneesFromAssignable</h2>\n  <p>Removes assignees from an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removeassigneesfromassignableinput\">RemoveAssigneesFromAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was unassigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmin\">\n      <a href=\"#removeenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseAdmin</h2>\n  <p>Removes an administrator from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removeenterpriseadmininput\">RemoveEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was removed as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseidentityprovider\">\n      <a href=\"#removeenterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseIdentityProvider</h2>\n  <p>Removes the identity provider from an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removeenterpriseidentityproviderinput\">RemoveEnterpriseIdentityProviderInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identityProvider</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The identity provider that was removed from the enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseorganization\">\n      <a href=\"#removeenterpriseorganization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseOrganization</h2>\n  <p>Removes an organization from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removeenterpriseorganizationinput\">RemoveEnterpriseOrganizationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that was removed from the enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterprisesupportentitlement\">\n      <a href=\"#removeenterprisesupportentitlement\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseSupportEntitlement</h2>\n  <p>Removes a support entitlement from an enterprise member.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removeenterprisesupportentitlementinput\">RemoveEnterpriseSupportEntitlementInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing the support entitlement.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelable\">\n      <a href=\"#removelabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeLabelsFromLabelable</h2>\n  <p>Removes labels from a Labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removelabelsfromlabelableinput\">RemoveLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The Labelable the labels were removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaborator\">\n      <a href=\"#removeoutsidecollaborator\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeOutsideCollaborator</h2>\n  <p>Removes outside collaborator from all repositories in an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removeoutsidecollaboratorinput\">RemoveOutsideCollaboratorInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>removedUser</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was removed as an outside collaborator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereaction\">\n      <a href=\"#removereaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeReaction</h2>\n  <p>Removes a reaction from a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removereactioninput\">RemoveReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestar\">\n      <a href=\"#removestar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeStar</h2>\n  <p>Removes a star from a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removestarinput\">RemoveStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvote\">\n      <a href=\"#removeupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeUpvote</h2>\n  <p>Remove an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#removeupvoteinput\">RemoveUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissue\">\n      <a href=\"#reopenissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenIssue</h2>\n  <p>Reopen a issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reopenissueinput\">ReopenIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequest\">\n      <a href=\"#reopenpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenPullRequest</h2>\n  <p>Reopen a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reopenpullrequestinput\">ReopenPullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was reopened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviews\">\n      <a href=\"#requestreviews\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>requestReviews</h2>\n  <p>Set review requests on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#requestreviewsinput\">RequestReviewsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is getting requests.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewersEdge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useredge\">UserEdge</a></code>)</p></td>\n<td><p>The edge from the pull request to the requested reviewers.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuite\">\n      <a href=\"#rerequestchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rerequestCheckSuite</h2>\n  <p>Rerequests an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#rerequestchecksuiteinput\">RerequestCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The requested check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthread\">\n      <a href=\"#resolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>resolveReviewThread</h2>\n  <p>Marks a review thread as resolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#resolvereviewthreadinput\">ResolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokeenterpriseorganizationsmigratorrole\">\n      <a href=\"#revokeenterpriseorganizationsmigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>revokeEnterpriseOrganizationsMigratorRole</h2>\n  <p>Revoke the migrator role to a user for all organizations under an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#revokeenterpriseorganizationsmigratorroleinput\">RevokeEnterpriseOrganizationsMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection</a></code>)</p></td>\n<td><p>The organizations that had the migrator role revoked for the given user.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokemigratorrole\">\n      <a href=\"#revokemigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>revokeMigratorRole</h2>\n  <p>Revoke the migrator role from a user or a team.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#revokemigratorroleinput\">RevokeMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Did the operation succeed?.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setenterpriseidentityprovider\">\n      <a href=\"#setenterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>setEnterpriseIdentityProvider</h2>\n  <p>Creates or updates the identity provider for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#setenterpriseidentityproviderinput\">SetEnterpriseIdentityProviderInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identityProvider</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The identity provider for the enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setorganizationinteractionlimit\">\n      <a href=\"#setorganizationinteractionlimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>setOrganizationInteractionLimit</h2>\n  <p>Set an organization level interaction limit for an organization&apos;s public repositories.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#setorganizationinteractionlimitinput\">SetOrganizationInteractionLimitInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that the interaction limit was set for.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setrepositoryinteractionlimit\">\n      <a href=\"#setrepositoryinteractionlimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>setRepositoryInteractionLimit</h2>\n  <p>Sets an interaction limit setting for a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#setrepositoryinteractionlimitinput\">SetRepositoryInteractionLimitInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that the interaction limit was set for.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"setuserinteractionlimit\">\n      <a href=\"#setuserinteractionlimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>setUserInteractionLimit</h2>\n  <p>Set a user level interaction limit for an user&apos;s public repositories.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#setuserinteractionlimitinput\">SetUserInteractionLimitInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that the interaction limit was set for.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"startrepositorymigration\">\n      <a href=\"#startrepositorymigration\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>startRepositoryMigration</h2>\n  <p>Start a repository migration.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#startrepositorymigrationinput\">StartRepositoryMigrationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryMigration</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorymigration\">RepositoryMigration</a></code>)</p></td>\n<td><p>The new Octoshift repository migration.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreview\">\n      <a href=\"#submitpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>submitPullRequestReview</h2>\n  <p>Submits a pending pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#submitpullrequestreviewinput\">SubmitPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The submitted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissue\">\n      <a href=\"#transferissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>transferIssue</h2>\n  <p>Transfer an issue to a different repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#transferissueinput\">TransferIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was transferred.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepository\">\n      <a href=\"#unarchiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unarchiveRepository</h2>\n  <p>Unarchives a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unarchiverepositoryinput\">UnarchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was unarchived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuser\">\n      <a href=\"#unfollowuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unfollowUser</h2>\n  <p>Unfollow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unfollowuserinput\">UnfollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was unfollowed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromproject\">\n      <a href=\"#unlinkrepositoryfromproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlinkRepositoryFromProject</h2>\n  <p>Deletes a repository link from a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unlinkrepositoryfromprojectinput\">UnlinkRepositoryFromProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockable\">\n      <a href=\"#unlocklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlockLockable</h2>\n  <p>Unlock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unlocklockableinput\">UnlockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unlockedRecord</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was unlocked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswer\">\n      <a href=\"#unmarkdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkDiscussionCommentAsAnswer</h2>\n  <p>Unmark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unmarkdiscussioncommentasanswerinput\">UnmarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewed\">\n      <a href=\"#unmarkfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkFileAsViewed</h2>\n  <p>Unmark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unmarkfileasviewedinput\">UnmarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicate\">\n      <a href=\"#unmarkissueasduplicate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkIssueAsDuplicate</h2>\n  <p>Unmark an issue as a duplicate of another issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unmarkissueasduplicateinput\">UnmarkIssueAsDuplicateInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request that was marked as a duplicate.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecomment\">\n      <a href=\"#unminimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unminimizeComment</h2>\n  <p>Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unminimizecommentinput\">UnminimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unminimizedComment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was unminimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissue\">\n      <a href=\"#unpinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unpinIssue</h2>\n  <p>Unpin a pinned issue from a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unpinissueinput\">UnpinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was unpinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthread\">\n      <a href=\"#unresolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unresolveReviewThread</h2>\n  <p>Marks a review thread as unresolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#unresolvereviewthreadinput\">UnresolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionrule\">\n      <a href=\"#updatebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatebranchprotectionruleinput\">UpdateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckrun\">\n      <a href=\"#updatecheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckRun</h2>\n  <p>Update a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatecheckruninput\">UpdateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The updated check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferences\">\n      <a href=\"#updatechecksuitepreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckSuitePreferences</h2>\n  <p>Modifies the settings of an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatechecksuitepreferencesinput\">UpdateCheckSuitePreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussion\">\n      <a href=\"#updatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussion</h2>\n  <p>Update a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatediscussioninput\">UpdateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The modified discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncomment\">\n      <a href=\"#updatediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussionComment</h2>\n  <p>Update the contents of a comment on a Discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatediscussioncommentinput\">UpdateDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The modified discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseadministratorrole\">\n      <a href=\"#updateenterpriseadministratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAdministratorRole</h2>\n  <p>Updates the role of an enterprise administrator.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterpriseadministratorroleinput\">UpdateEnterpriseAdministratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of changing the administrator&apos;s role.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterpriseallowprivaterepositoryforkingsettinginput\">UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsetting\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseDefaultRepositoryPermissionSetting</h2>\n  <p>Sets the base repository permission for organizations in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisedefaultrepositorypermissionsettinginput\">UpdateEnterpriseDefaultRepositoryPermissionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</h2>\n  <p>Sets whether organization members with admin permissions on a repository can change repository visibility.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessetting\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanCreateRepositoriesSetting</h2>\n  <p>Sets the members can create repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisememberscancreaterepositoriessettinginput\">UpdateEnterpriseMembersCanCreateRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessetting\">\n      <a href=\"#updateenterprisememberscandeleteissuessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteIssuesSetting</h2>\n  <p>Sets the members can delete issues setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisememberscandeleteissuessettinginput\">UpdateEnterpriseMembersCanDeleteIssuesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessetting\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteRepositoriesSetting</h2>\n  <p>Sets the members can delete repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisememberscandeleterepositoriessettinginput\">UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssetting\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanInviteCollaboratorsSetting</h2>\n  <p>Sets whether members can invite collaborators are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisememberscaninvitecollaboratorssettinginput\">UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessetting\">\n      <a href=\"#updateenterprisememberscanmakepurchasessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanMakePurchasesSetting</h2>\n  <p>Sets whether or not an organization admin can make purchases.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisememberscanmakepurchasessettinginput\">UpdateEnterpriseMembersCanMakePurchasesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessetting\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanUpdateProtectedBranchesSetting</h2>\n  <p>Sets the members can update protected branches setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisememberscanupdateprotectedbranchessettinginput\">UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssetting\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanViewDependencyInsightsSetting</h2>\n  <p>Sets the members can view dependency insights for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisememberscanviewdependencyinsightssettinginput\">UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssetting\">\n      <a href=\"#updateenterpriseorganizationprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOrganizationProjectsSetting</h2>\n  <p>Sets whether organization projects are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterpriseorganizationprojectssettinginput\">UpdateEnterpriseOrganizationProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseownerorganizationrole\">\n      <a href=\"#updateenterpriseownerorganizationrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOwnerOrganizationRole</h2>\n  <p>Updates the role of an enterprise owner with an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterpriseownerorganizationroleinput\">UpdateEnterpriseOwnerOrganizationRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of changing the owner&apos;s organization role.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofile\">\n      <a href=\"#updateenterpriseprofile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseProfile</h2>\n  <p>Updates an enterprise&apos;s profile.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterpriseprofileinput\">UpdateEnterpriseProfileInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssetting\">\n      <a href=\"#updateenterpriserepositoryprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseRepositoryProjectsSetting</h2>\n  <p>Sets whether repository projects are enabled for a enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterpriserepositoryprojectssettinginput\">UpdateEnterpriseRepositoryProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssetting\">\n      <a href=\"#updateenterpriseteamdiscussionssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTeamDiscussionsSetting</h2>\n  <p>Sets whether team discussions are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterpriseteamdiscussionssettinginput\">UpdateEnterpriseTeamDiscussionsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsetting\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTwoFactorAuthenticationRequiredSetting</h2>\n  <p>Sets whether two factor authentication is required for all users in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenterprisetwofactorauthenticationrequiredsettinginput\">UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironment\">\n      <a href=\"#updateenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnvironment</h2>\n  <p>Updates an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateenvironmentinput\">UpdateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The updated environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsetting\">\n      <a href=\"#updateipallowlistenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEnabledSetting</h2>\n  <p>Sets whether an IP allow list is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateipallowlistenabledsettinginput\">UpdateIpAllowListEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentry\">\n      <a href=\"#updateipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEntry</h2>\n  <p>Updates an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateipallowlistentryinput\">UpdateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsetting\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListForInstalledAppsEnabledSetting</h2>\n  <p>Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateipallowlistforinstalledappsenabledsettinginput\">UpdateIpAllowListForInstalledAppsEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissue\">\n      <a href=\"#updateissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssue</h2>\n  <p>Updates an Issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateissueinput\">UpdateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecomment\">\n      <a href=\"#updateissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssueComment</h2>\n  <p>Updates an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateissuecommentinput\">UpdateIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabel\">\n      <a href=\"#updatelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateLabel</h2>\n  <p>Updates an existing label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateLabel</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatelabelinput\">UpdateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The updated label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsetting\">\n      <a href=\"#updatenotificationrestrictionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateNotificationRestrictionSetting</h2>\n  <p>Update the setting to restrict notifications to only verified or approved domains available to an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatenotificationrestrictionsettinginput\">UpdateNotificationRestrictionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateOrganizationAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput\">UpdateOrganizationAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateproject\">\n      <a href=\"#updateproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProject</h2>\n  <p>Updates an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateprojectinput\">UpdateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The updated project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcard\">\n      <a href=\"#updateprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectCard</h2>\n  <p>Updates an existing project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateprojectcardinput\">UpdateProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumn\">\n      <a href=\"#updateprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectColumn</h2>\n  <p>Updates an existing project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateprojectcolumninput\">UpdateProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The updated project column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnext\">\n      <a href=\"#updateprojectnext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectNext</h2>\n  <p>Updates an existing project (beta).</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateprojectnextinput\">UpdateProjectNextInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>The updated Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectnextitemfield\">\n      <a href=\"#updateprojectnextitemfield\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectNextItemField</h2>\n  <p>Updates a field of an item from a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateprojectnextitemfieldinput\">UpdateProjectNextItemFieldInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItem</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitem\">ProjectNextItem</a></code>)</p></td>\n<td><p>The updated item.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequest\">\n      <a href=\"#updatepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequest</h2>\n  <p>Update a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatepullrequestinput\">UpdatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranch\">\n      <a href=\"#updatepullrequestbranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestBranch</h2>\n  <p>Merge HEAD from upstream branch into pull request branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatepullrequestbranchinput\">UpdatePullRequestBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreview\">\n      <a href=\"#updatepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReview</h2>\n  <p>Updates the body of a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatepullrequestreviewinput\">UpdatePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The updated pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcomment\">\n      <a href=\"#updatepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReviewComment</h2>\n  <p>Updates a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatepullrequestreviewcommentinput\">UpdatePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewComment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateref\">\n      <a href=\"#updateref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRef</h2>\n  <p>Update a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updaterefinput\">UpdateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The updated Ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefs\">\n      <a href=\"#updaterefs\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRefs</h2>\n  <p>Creates, updates and/or deletes multiple refs in a repository.</p>\n<p>This mutation takes a list of <code>RefUpdate</code>s 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.</p>\n<p><code>RefUpdate.beforeOid</code> specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to verify that\nthe references should not exist.</p>\n<p><code>RefUpdate.afterOid</code> specifies the value that the given reference\nwill point to after performing all updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to delete a\nreference.</p>\n<p>If <code>RefUpdate.force</code> is set to <code>true</code>, a non-fast-forward updates\nfor the given reference will be allowed.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateRefs</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updaterefsinput\">UpdateRefsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepository\">\n      <a href=\"#updaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRepository</h2>\n  <p>Update information about a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updaterepositoryinput\">UpdateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesponsorshippreferences\">\n      <a href=\"#updatesponsorshippreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSponsorshipPreferences</h2>\n  <p>Change visibility of your sponsorship and opt in or out of email updates from the maintainer.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatesponsorshippreferencesinput\">UpdateSponsorshipPreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorship</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscription\">\n      <a href=\"#updatesubscription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSubscription</h2>\n  <p>Updates the state for subscribable subjects.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatesubscriptioninput\">UpdateSubscriptionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>)</p></td>\n<td><p>The input subscribable entity.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussion\">\n      <a href=\"#updateteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussion</h2>\n  <p>Updates a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateteamdiscussioninput\">UpdateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The updated discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncomment\">\n      <a href=\"#updateteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussionComment</h2>\n  <p>Updates a discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateteamdiscussioncommentinput\">UpdateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignment\">\n      <a href=\"#updateteamreviewassignment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamReviewAssignment</h2>\n  <p>Updates team review assignment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateTeamReviewAssignment</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updateteamreviewassignmentinput\">UpdateTeamReviewAssignmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team that was modified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopics\">\n      <a href=\"#updatetopics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTopics</h2>\n  <p>Replaces the repository&apos;s topics with the given topics.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#updatetopicsinput\">UpdateTopicsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invalidTopicNames</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Names of the provided topics that are not valid.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomain\">\n      <a href=\"#verifyverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>verifyVerifiableDomain</h2>\n  <p>Verify that a verifiable domain has the expected DNS record.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#verifyverifiabledomaininput\">VerifyVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was verified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#abortqueuedmigrations\">\n      abortQueuedMigrations</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#abortqueuedmigrations\">\n      abortQueuedMigrations</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#acceptenterpriseadministratorinvitation\">\n      acceptEnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#acceptenterpriseadministratorinvitation\">\n      acceptEnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#accepttopicsuggestion\">\n      acceptTopicSuggestion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#accepttopicsuggestion\">\n      acceptTopicSuggestion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcomment\">\n      addComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcomment\">\n      addComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterprisesupportentitlement\">\n      addEnterpriseSupportEntitlement</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterprisesupportentitlement\">\n      addEnterpriseSupportEntitlement</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcard\">\n      addProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcard\">\n      addProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectnextitem\">\n      addProjectNextItem</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectnextitem\">\n      addProjectNextItem</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreaction\">\n      addReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreaction\">\n      addReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstar\">\n      addStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstar\">\n      addStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvote\">\n      addUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvote\">\n      addUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeployments\">\n      approveDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeployments\">\n      approveDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepository\">\n      archiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepository\">\n      archiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cancelenterpriseadmininvitation\">\n      cancelEnterpriseAdminInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cancelenterpriseadmininvitation\">\n      cancelEnterpriseAdminInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cancelsponsorship\">\n      cancelSponsorship</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cancelsponsorship\">\n      cancelSponsorship</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneproject\">\n      cloneProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneproject\">\n      cloneProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissue\">\n      closeIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissue\">\n      closeIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequest\">\n      closePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequest\">\n      closePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckrun\">\n      createCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckrun\">\n      createCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeployment\">\n      createDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeployment\">\n      createDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussion\">\n      createDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussion\">\n      createDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironment\">\n      createEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironment\">\n      createEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissue\">\n      createIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissue\">\n      createIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabel\">\n      createLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabel\">\n      createLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createmigrationsource\">\n      createMigrationSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createmigrationsource\">\n      createMigrationSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createproject\">\n      createProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createproject\">\n      createProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequest\">\n      createPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequest\">\n      createPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createref\">\n      createRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createref\">\n      createRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepository\">\n      createRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepository\">\n      createRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createsponsorship\">\n      createSponsorship</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createsponsorship\">\n      createSponsorship</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#declinetopicsuggestion\">\n      declineTopicSuggestion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#declinetopicsuggestion\">\n      declineTopicSuggestion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissue\">\n      deleteIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissue\">\n      deleteIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabel\">\n      deleteLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabel\">\n      deleteLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteproject\">\n      deleteProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteproject\">\n      deleteProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectnextitem\">\n      deleteProjectNextItem</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectnextitem\">\n      deleteProjectNextItem</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteref\">\n      deleteRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteref\">\n      deleteRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismissrepositoryvulnerabilityalert\">\n      dismissRepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismissrepositoryvulnerabilityalert\">\n      dismissRepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuser\">\n      followUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuser\">\n      followUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantenterpriseorganizationsmigratorrole\">\n      grantEnterpriseOrganizationsMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantenterpriseorganizationsmigratorrole\">\n      grantEnterpriseOrganizationsMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantmigratorrole\">\n      grantMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantmigratorrole\">\n      grantMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importproject\">\n      importProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importproject\">\n      importProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#inviteenterpriseadmin\">\n      inviteEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#inviteenterpriseadmin\">\n      inviteEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockable\">\n      lockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockable\">\n      lockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranch\">\n      mergeBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranch\">\n      mergeBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecomment\">\n      minimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecomment\">\n      minimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissue\">\n      pinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissue\">\n      pinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateenterpriseidentityproviderrecoverycodes\">\n      regenerateEnterpriseIdentityProviderRecoveryCodes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateenterpriseidentityproviderrecoverycodes\">\n      regenerateEnterpriseIdentityProviderRecoveryCodes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseidentityprovider\">\n      removeEnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseidentityprovider\">\n      removeEnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseorganization\">\n      removeEnterpriseOrganization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseorganization\">\n      removeEnterpriseOrganization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterprisesupportentitlement\">\n      removeEnterpriseSupportEntitlement</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterprisesupportentitlement\">\n      removeEnterpriseSupportEntitlement</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereaction\">\n      removeReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereaction\">\n      removeReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestar\">\n      removeStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestar\">\n      removeStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvote\">\n      removeUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvote\">\n      removeUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissue\">\n      reopenIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissue\">\n      reopenIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviews\">\n      requestReviews</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviews\">\n      requestReviews</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokeenterpriseorganizationsmigratorrole\">\n      revokeEnterpriseOrganizationsMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokeenterpriseorganizationsmigratorrole\">\n      revokeEnterpriseOrganizationsMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokemigratorrole\">\n      revokeMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokemigratorrole\">\n      revokeMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setenterpriseidentityprovider\">\n      setEnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setenterpriseidentityprovider\">\n      setEnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setorganizationinteractionlimit\">\n      setOrganizationInteractionLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setorganizationinteractionlimit\">\n      setOrganizationInteractionLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setrepositoryinteractionlimit\">\n      setRepositoryInteractionLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setrepositoryinteractionlimit\">\n      setRepositoryInteractionLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#setuserinteractionlimit\">\n      setUserInteractionLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#setuserinteractionlimit\">\n      setUserInteractionLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#startrepositorymigration\">\n      startRepositoryMigration</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#startrepositorymigration\">\n      startRepositoryMigration</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissue\">\n      transferIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissue\">\n      transferIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuser\">\n      unfollowUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuser\">\n      unfollowUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockable\">\n      unlockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockable\">\n      unlockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissue\">\n      unpinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissue\">\n      unpinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseadministratorrole\">\n      updateEnterpriseAdministratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseadministratorrole\">\n      updateEnterpriseAdministratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseownerorganizationrole\">\n      updateEnterpriseOwnerOrganizationRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseownerorganizationrole\">\n      updateEnterpriseOwnerOrganizationRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissue\">\n      updateIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissue\">\n      updateIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabel\">\n      updateLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabel\">\n      updateLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateorganizationallowprivaterepositoryforkingsetting\">\n      updateOrganizationAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateorganizationallowprivaterepositoryforkingsetting\">\n      updateOrganizationAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateproject\">\n      updateProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateproject\">\n      updateProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectnext\">\n      updateProjectNext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectnext\">\n      updateProjectNext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectnextitemfield\">\n      updateProjectNextItemField</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectnextitemfield\">\n      updateProjectNextItemField</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestbranch\">\n      updatePullRequestBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestbranch\">\n      updatePullRequestBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateref\">\n      updateRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateref\">\n      updateRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefs\">\n      updateRefs</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefs\">\n      updateRefs</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepository\">\n      updateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepository\">\n      updateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesponsorshippreferences\">\n      updateSponsorshipPreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesponsorshippreferences\">\n      updateSponsorshipPreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscription\">\n      updateSubscription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscription\">\n      updateSubscription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopics\">\n      updateTopics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopics\">\n      updateTopics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -2519,1050 +2519,1050 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignable\">\n      <a href=\"#addassigneestoassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addAssigneesToAssignable</h2>\n  <p>Adds assignees to an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addassigneestoassignableinput\">AddAssigneesToAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was assigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcomment\">\n      <a href=\"#addcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addComment</h2>\n  <p>Adds a comment to an Issue or Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addcommentinput\">AddCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuecommentedge\">IssueCommentEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>)</p></td>\n<td><p>The subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineEdge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuetimelineitemedge\">IssueTimelineItemEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s timeline connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncomment\">\n      <a href=\"#adddiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addDiscussionComment</h2>\n  <p>Adds a comment to a Discussion, possibly as a reply to another comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#adddiscussioncommentinput\">AddDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The newly created discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmin\">\n      <a href=\"#addenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addEnterpriseAdmin</h2>\n  <p>Adds an administrator to the global enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addenterpriseadmininput\">AddEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was added as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelable\">\n      <a href=\"#addlabelstolabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addLabelsToLabelable</h2>\n  <p>Adds labels to a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addlabelstolabelableinput\">AddLabelsToLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was labeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcard\">\n      <a href=\"#addprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectCard</h2>\n  <p>Adds a card to a ProjectColumn. Either <code>contentId</code> or <code>note</code> must be provided but <strong>not</strong> both.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addprojectcardinput\">AddProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The edge from the ProjectColumn&apos;s card connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The ProjectColumn.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumn\">\n      <a href=\"#addprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectColumn</h2>\n  <p>Adds a column to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addprojectcolumninput\">AddProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The edge from the project&apos;s column connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreview\">\n      <a href=\"#addpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReview</h2>\n  <p>Adds a review to a Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addpullrequestreviewinput\">AddPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The newly created pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewEdge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewedge\">PullRequestReviewEdge</a></code>)</p></td>\n<td><p>The edge from the pull request&apos;s review connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcomment\">\n      <a href=\"#addpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewComment</h2>\n  <p>Adds a comment to a review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addpullrequestreviewcommentinput\">AddPullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The newly created comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcommentedge\">PullRequestReviewCommentEdge</a></code>)</p></td>\n<td><p>The edge from the review&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthread\">\n      <a href=\"#addpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewThread</h2>\n  <p>Adds a new thread to a pending Pull Request Review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addpullrequestreviewthreadinput\">AddPullRequestReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The newly created thread.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreaction\">\n      <a href=\"#addreaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addReaction</h2>\n  <p>Adds a reaction to a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addreactioninput\">AddReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstar\">\n      <a href=\"#addstar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addStar</h2>\n  <p>Adds a star to a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addstarinput\">AddStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvote\">\n      <a href=\"#addupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addUpvote</h2>\n  <p>Add an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addupvoteinput\">AddUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomain\">\n      <a href=\"#addverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addVerifiableDomain</h2>\n  <p>Adds a verifiable domain to an owning account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#addverifiabledomaininput\">AddVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was added.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeployments\">\n      <a href=\"#approvedeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveDeployments</h2>\n  <p>Approve all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#approvedeploymentsinput\">ApproveDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomain\">\n      <a href=\"#approveverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveVerifiableDomain</h2>\n  <p>Approve a verifiable domain for notification delivery.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#approveverifiabledomaininput\">ApproveVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was approved.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepository\">\n      <a href=\"#archiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>archiveRepository</h2>\n  <p>Marks a repository as archived.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#archiverepositoryinput\">ArchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was marked as archived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatus\">\n      <a href=\"#changeuserstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>changeUserStatus</h2>\n  <p>Update your status on GitHub.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#changeuserstatusinput\">ChangeUserStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>Your updated status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelable\">\n      <a href=\"#clearlabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>clearLabelsFromLabelable</h2>\n  <p>Clears all labels from a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#clearlabelsfromlabelableinput\">ClearLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was unlabeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneproject\">\n      <a href=\"#cloneproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneProject</h2>\n  <p>Creates a new project by cloning configuration from an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#cloneprojectinput\">CloneProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>jobStatusId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The id of the JobStatus for populating cloned fields.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new cloned project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepository\">\n      <a href=\"#clonetemplaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneTemplateRepository</h2>\n  <p>Create a new repository with the same files and directory structure as a template repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#clonetemplaterepositoryinput\">CloneTemplateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissue\">\n      <a href=\"#closeissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closeIssue</h2>\n  <p>Close an issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#closeissueinput\">CloseIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequest\">\n      <a href=\"#closepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closePullRequest</h2>\n  <p>Close a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#closepullrequestinput\">ClosePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissue\">\n      <a href=\"#convertprojectcardnotetoissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertProjectCardNoteToIssue</h2>\n  <p>Convert a project note card to one associated with a newly created issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#convertprojectcardnotetoissueinput\">ConvertProjectCardNoteToIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraft\">\n      <a href=\"#convertpullrequesttodraft\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertPullRequestToDraft</h2>\n  <p>Converts a pull request to draft.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#convertpullrequesttodraftinput\">ConvertPullRequestToDraftInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is now a draft.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionrule\">\n      <a href=\"#createbranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createbranchprotectionruleinput\">CreateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckrun\">\n      <a href=\"#createcheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckRun</h2>\n  <p>Create a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createcheckruninput\">CreateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The newly created check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuite\">\n      <a href=\"#createchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckSuite</h2>\n  <p>Create a check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createchecksuiteinput\">CreateCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The newly created check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranch\">\n      <a href=\"#createcommitonbranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCommitOnBranch</h2>\n  <p>Appends a commit to the given branch as the authenticated user.</p>\n<p>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 <code>git commit</code>.</p>\n<h3 id=\"locating-a-branch\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#locating-a-branch\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Locating a Branch</h3>\n<p>Commits are appended to a <code>branch</code> of type <code>Ref</code>.\nThis must refer to a git branch (i.e.  the fully qualified path must\nbegin with <code>refs/heads/</code>, although including this prefix is optional.</p>\n<p>Callers may specify the <code>branch</code> to commit to either by its global node\nID or by passing both of <code>repositoryNameWithOwner</code> and <code>refName</code>.  For\nmore details see the documentation for <code>CommittableBranch</code>.</p>\n<h3 id=\"describing-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#describing-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Describing Changes</h3>\n<p><code>fileChanges</code> are specified as a <code>FilesChanges</code> object describing\n<code>FileAdditions</code> and <code>FileDeletions</code>.</p>\n<p>Please see the documentation for <code>FileChanges</code> for more information on\nhow to use this argument to describe any set of file changes.</p>\n<h3 id=\"authorship\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#authorship\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Authorship</h3>\n<p>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.</p>\n<p>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.</p>\n<p>If you need full control over author and committer information, please\nuse the Git Database REST API instead.</p>\n<h3 id=\"commit-signing\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#commit-signing\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Commit Signing</h3>\n<p>Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createcommitonbranchinput\">CreateCommitOnBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref which has been updated to point to the new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeployment\">\n      <a href=\"#createdeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeployment</h2>\n  <p>Creates a new deployment event.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeployment</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createdeploymentinput\">CreateDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerged</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>True if the default branch has been auto-merged into the deployment ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The new deployment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatus\">\n      <a href=\"#createdeploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeploymentStatus</h2>\n  <p>Create a deployment status.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeploymentStatus</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createdeploymentstatusinput\">CreateDeploymentStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The new deployment status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussion\">\n      <a href=\"#creatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDiscussion</h2>\n  <p>Create a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#creatediscussioninput\">CreateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganization\">\n      <a href=\"#createenterpriseorganization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnterpriseOrganization</h2>\n  <p>Creates an organization as part of an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createenterpriseorganizationinput\">CreateEnterpriseOrganizationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise that owns the created organization.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironment\">\n      <a href=\"#createenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnvironment</h2>\n  <p>Creates an environment or simply returns it if already exists.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createenvironmentinput\">CreateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The new or existing environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentry\">\n      <a href=\"#createipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIpAllowListEntry</h2>\n  <p>Creates a new IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createipallowlistentryinput\">CreateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissue\">\n      <a href=\"#createissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIssue</h2>\n  <p>Creates a new issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createissueinput\">CreateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The new issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabel\">\n      <a href=\"#createlabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createLabel</h2>\n  <p>Creates a new label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createLabel</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createlabelinput\">CreateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The new label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createproject\">\n      <a href=\"#createproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createProject</h2>\n  <p>Creates a new project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createprojectinput\">CreateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequest\">\n      <a href=\"#createpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createPullRequest</h2>\n  <p>Create a new pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createpullrequestinput\">CreatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The new pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createref\">\n      <a href=\"#createref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRef</h2>\n  <p>Create a new Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createrefinput\">CreateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The newly created ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepository\">\n      <a href=\"#createrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRepository</h2>\n  <p>Create a new repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createrepositoryinput\">CreateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussion\">\n      <a href=\"#createteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussion</h2>\n  <p>Creates a new team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createteamdiscussioninput\">CreateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The new discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncomment\">\n      <a href=\"#createteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussionComment</h2>\n  <p>Creates a new team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#createteamdiscussioncommentinput\">CreateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The new comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionrule\">\n      <a href=\"#deletebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteBranchProtectionRule</h2>\n  <p>Delete a branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deletebranchprotectionruleinput\">DeleteBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeployment\">\n      <a href=\"#deletedeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDeployment</h2>\n  <p>Deletes a deployment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deletedeploymentinput\">DeleteDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussion\">\n      <a href=\"#deletediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussion</h2>\n  <p>Delete a discussion and all of its replies.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deletediscussioninput\">DeleteDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncomment\">\n      <a href=\"#deletediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussionComment</h2>\n  <p>Delete a discussion comment. If it has replies, wipe it instead.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deletediscussioncommentinput\">DeleteDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironment\">\n      <a href=\"#deleteenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteEnvironment</h2>\n  <p>Deletes an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteenvironmentinput\">DeleteEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentry\">\n      <a href=\"#deleteipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIpAllowListEntry</h2>\n  <p>Deletes an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteipallowlistentryinput\">DeleteIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissue\">\n      <a href=\"#deleteissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssue</h2>\n  <p>Deletes an Issue object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteissueinput\">DeleteIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository the issue belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecomment\">\n      <a href=\"#deleteissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssueComment</h2>\n  <p>Deletes an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteissuecommentinput\">DeleteIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabel\">\n      <a href=\"#deletelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteLabel</h2>\n  <p>Deletes a label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deleteLabel</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deletelabelinput\">DeleteLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversion\">\n      <a href=\"#deletepackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePackageVersion</h2>\n  <p>Delete a package version.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deletePackageVersion</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#access-to-package-version-deletion-preview\">Access to package version deletion preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deletepackageversioninput\">DeletePackageVersionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the operation succeeded.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteproject\">\n      <a href=\"#deleteproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProject</h2>\n  <p>Deletes a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteprojectinput\">DeleteProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>)</p></td>\n<td><p>The repository or organization the project was removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcard\">\n      <a href=\"#deleteprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectCard</h2>\n  <p>Deletes a project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteprojectcardinput\">DeleteProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The column the deleted card was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCardId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted card ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumn\">\n      <a href=\"#deleteprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectColumn</h2>\n  <p>Deletes a project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteprojectcolumninput\">DeleteProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedColumnId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted column ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project the deleted column was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreview\">\n      <a href=\"#deletepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReview</h2>\n  <p>Deletes a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deletepullrequestreviewinput\">DeletePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The deleted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcomment\">\n      <a href=\"#deletepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReviewComment</h2>\n  <p>Deletes a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deletepullrequestreviewcommentinput\">DeletePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review the deleted comment belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteref\">\n      <a href=\"#deleteref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteRef</h2>\n  <p>Delete a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleterefinput\">DeleteRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussion\">\n      <a href=\"#deleteteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussion</h2>\n  <p>Deletes a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteteamdiscussioninput\">DeleteTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncomment\">\n      <a href=\"#deleteteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussionComment</h2>\n  <p>Deletes a team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteteamdiscussioncommentinput\">DeleteTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomain\">\n      <a href=\"#deleteverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteVerifiableDomain</h2>\n  <p>Deletes a verifiable domain.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deleteverifiabledomaininput\">DeleteVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owning account from which the domain was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomerge\">\n      <a href=\"#disablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>disablePullRequestAutoMerge</h2>\n  <p>Disable auto merge on the given pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#disablepullrequestautomergeinput\">DisablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto merge was disabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreview\">\n      <a href=\"#dismisspullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissPullRequestReview</h2>\n  <p>Dismisses an approved or rejected pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#dismisspullrequestreviewinput\">DismissPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The dismissed pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalert\">\n      <a href=\"#dismissrepositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissRepositoryVulnerabilityAlert</h2>\n  <p>Dismisses the Dependabot alert.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput\">DismissRepositoryVulnerabilityAlertInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlert</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The Dependabot alert that was dismissed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomerge\">\n      <a href=\"#enablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>enablePullRequestAutoMerge</h2>\n  <p>Enable the default auto-merge on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#enablepullrequestautomergeinput\">EnablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto-merge was enabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuser\">\n      <a href=\"#followuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>followUser</h2>\n  <p>Follow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#followuserinput\">FollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was followed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importproject\">\n      <a href=\"#importproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>importProject</h2>\n  <p>Creates a new project by importing columns and a list of issues/PRs.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>importProject</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#import-project-preview\">Import project preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#importprojectinput\">ImportProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new Project!.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoproject\">\n      <a href=\"#linkrepositorytoproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>linkRepositoryToProject</h2>\n  <p>Creates a repository link for a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#linkrepositorytoprojectinput\">LinkRepositoryToProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockable\">\n      <a href=\"#locklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>lockLockable</h2>\n  <p>Lock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#locklockableinput\">LockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockedRecord</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was locked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswer\">\n      <a href=\"#markdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markDiscussionCommentAsAnswer</h2>\n  <p>Mark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#markdiscussioncommentasanswerinput\">MarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the chosen comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewed\">\n      <a href=\"#markfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markFileAsViewed</h2>\n  <p>Mark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#markfileasviewedinput\">MarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreview\">\n      <a href=\"#markpullrequestreadyforreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markPullRequestReadyForReview</h2>\n  <p>Marks a pull request ready for review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#markpullrequestreadyforreviewinput\">MarkPullRequestReadyForReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is ready for review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranch\">\n      <a href=\"#mergebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergeBranch</h2>\n  <p>Merge a head into a branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#mergebranchinput\">MergeBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The resulting merge Commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequest\">\n      <a href=\"#mergepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergePullRequest</h2>\n  <p>Merge a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#mergepullrequestinput\">MergePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was merged.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecomment\">\n      <a href=\"#minimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>minimizeComment</h2>\n  <p>Minimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#minimizecommentinput\">MinimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedComment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was minimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcard\">\n      <a href=\"#moveprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectCard</h2>\n  <p>Moves a project card to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#moveprojectcardinput\">MoveProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The new edge of the moved card.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumn\">\n      <a href=\"#moveprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectColumn</h2>\n  <p>Moves a project column to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#moveprojectcolumninput\">MoveProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The new edge of the moved column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissue\">\n      <a href=\"#pinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>pinIssue</h2>\n  <p>Pin an issue to a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#pinissueinput\">PinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintoken\">\n      <a href=\"#regenerateverifiabledomaintoken\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>regenerateVerifiableDomainToken</h2>\n  <p>Regenerates a verifiable domain&apos;s verification token.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#regenerateverifiabledomaintokeninput\">RegenerateVerifiableDomainTokenInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The verification token that was generated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeployments\">\n      <a href=\"#rejectdeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rejectDeployments</h2>\n  <p>Reject all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#rejectdeploymentsinput\">RejectDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignable\">\n      <a href=\"#removeassigneesfromassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeAssigneesFromAssignable</h2>\n  <p>Removes assignees from an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#removeassigneesfromassignableinput\">RemoveAssigneesFromAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was unassigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmin\">\n      <a href=\"#removeenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseAdmin</h2>\n  <p>Removes an administrator from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#removeenterpriseadmininput\">RemoveEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was removed as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelable\">\n      <a href=\"#removelabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeLabelsFromLabelable</h2>\n  <p>Removes labels from a Labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#removelabelsfromlabelableinput\">RemoveLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The Labelable the labels were removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaborator\">\n      <a href=\"#removeoutsidecollaborator\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeOutsideCollaborator</h2>\n  <p>Removes outside collaborator from all repositories in an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#removeoutsidecollaboratorinput\">RemoveOutsideCollaboratorInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>removedUser</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was removed as an outside collaborator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereaction\">\n      <a href=\"#removereaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeReaction</h2>\n  <p>Removes a reaction from a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#removereactioninput\">RemoveReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestar\">\n      <a href=\"#removestar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeStar</h2>\n  <p>Removes a star from a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#removestarinput\">RemoveStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvote\">\n      <a href=\"#removeupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeUpvote</h2>\n  <p>Remove an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#removeupvoteinput\">RemoveUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissue\">\n      <a href=\"#reopenissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenIssue</h2>\n  <p>Reopen a issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reopenissueinput\">ReopenIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequest\">\n      <a href=\"#reopenpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenPullRequest</h2>\n  <p>Reopen a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reopenpullrequestinput\">ReopenPullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was reopened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviews\">\n      <a href=\"#requestreviews\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>requestReviews</h2>\n  <p>Set review requests on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#requestreviewsinput\">RequestReviewsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is getting requests.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewersEdge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#useredge\">UserEdge</a></code>)</p></td>\n<td><p>The edge from the pull request to the requested reviewers.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuite\">\n      <a href=\"#rerequestchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rerequestCheckSuite</h2>\n  <p>Rerequests an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#rerequestchecksuiteinput\">RerequestCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The requested check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthread\">\n      <a href=\"#resolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>resolveReviewThread</h2>\n  <p>Marks a review thread as resolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#resolvereviewthreadinput\">ResolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreview\">\n      <a href=\"#submitpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>submitPullRequestReview</h2>\n  <p>Submits a pending pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#submitpullrequestreviewinput\">SubmitPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The submitted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissue\">\n      <a href=\"#transferissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>transferIssue</h2>\n  <p>Transfer an issue to a different repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#transferissueinput\">TransferIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was transferred.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepository\">\n      <a href=\"#unarchiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unarchiveRepository</h2>\n  <p>Unarchives a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unarchiverepositoryinput\">UnarchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was unarchived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuser\">\n      <a href=\"#unfollowuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unfollowUser</h2>\n  <p>Unfollow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unfollowuserinput\">UnfollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was unfollowed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromproject\">\n      <a href=\"#unlinkrepositoryfromproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlinkRepositoryFromProject</h2>\n  <p>Deletes a repository link from a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unlinkrepositoryfromprojectinput\">UnlinkRepositoryFromProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockable\">\n      <a href=\"#unlocklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlockLockable</h2>\n  <p>Unlock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unlocklockableinput\">UnlockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unlockedRecord</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was unlocked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswer\">\n      <a href=\"#unmarkdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkDiscussionCommentAsAnswer</h2>\n  <p>Unmark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unmarkdiscussioncommentasanswerinput\">UnmarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewed\">\n      <a href=\"#unmarkfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkFileAsViewed</h2>\n  <p>Unmark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unmarkfileasviewedinput\">UnmarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicate\">\n      <a href=\"#unmarkissueasduplicate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkIssueAsDuplicate</h2>\n  <p>Unmark an issue as a duplicate of another issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unmarkissueasduplicateinput\">UnmarkIssueAsDuplicateInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request that was marked as a duplicate.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecomment\">\n      <a href=\"#unminimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unminimizeComment</h2>\n  <p>Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unminimizecommentinput\">UnminimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unminimizedComment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was unminimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissue\">\n      <a href=\"#unpinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unpinIssue</h2>\n  <p>Unpin a pinned issue from a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unpinissueinput\">UnpinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was unpinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthread\">\n      <a href=\"#unresolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unresolveReviewThread</h2>\n  <p>Marks a review thread as unresolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#unresolvereviewthreadinput\">UnresolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionrule\">\n      <a href=\"#updatebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatebranchprotectionruleinput\">UpdateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckrun\">\n      <a href=\"#updatecheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckRun</h2>\n  <p>Update a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatecheckruninput\">UpdateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The updated check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferences\">\n      <a href=\"#updatechecksuitepreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckSuitePreferences</h2>\n  <p>Modifies the settings of an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatechecksuitepreferencesinput\">UpdateCheckSuitePreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussion\">\n      <a href=\"#updatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussion</h2>\n  <p>Update a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatediscussioninput\">UpdateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The modified discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncomment\">\n      <a href=\"#updatediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussionComment</h2>\n  <p>Update the contents of a comment on a Discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatediscussioncommentinput\">UpdateDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The modified discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterpriseallowprivaterepositoryforkingsettinginput\">UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsetting\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseDefaultRepositoryPermissionSetting</h2>\n  <p>Sets the base repository permission for organizations in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisedefaultrepositorypermissionsettinginput\">UpdateEnterpriseDefaultRepositoryPermissionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</h2>\n  <p>Sets whether organization members with admin permissions on a repository can change repository visibility.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessetting\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanCreateRepositoriesSetting</h2>\n  <p>Sets the members can create repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisememberscancreaterepositoriessettinginput\">UpdateEnterpriseMembersCanCreateRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessetting\">\n      <a href=\"#updateenterprisememberscandeleteissuessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteIssuesSetting</h2>\n  <p>Sets the members can delete issues setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisememberscandeleteissuessettinginput\">UpdateEnterpriseMembersCanDeleteIssuesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessetting\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteRepositoriesSetting</h2>\n  <p>Sets the members can delete repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisememberscandeleterepositoriessettinginput\">UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssetting\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanInviteCollaboratorsSetting</h2>\n  <p>Sets whether members can invite collaborators are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisememberscaninvitecollaboratorssettinginput\">UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessetting\">\n      <a href=\"#updateenterprisememberscanmakepurchasessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanMakePurchasesSetting</h2>\n  <p>Sets whether or not an organization admin can make purchases.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisememberscanmakepurchasessettinginput\">UpdateEnterpriseMembersCanMakePurchasesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessetting\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanUpdateProtectedBranchesSetting</h2>\n  <p>Sets the members can update protected branches setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisememberscanupdateprotectedbranchessettinginput\">UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssetting\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanViewDependencyInsightsSetting</h2>\n  <p>Sets the members can view dependency insights for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisememberscanviewdependencyinsightssettinginput\">UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssetting\">\n      <a href=\"#updateenterpriseorganizationprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOrganizationProjectsSetting</h2>\n  <p>Sets whether organization projects are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterpriseorganizationprojectssettinginput\">UpdateEnterpriseOrganizationProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofile\">\n      <a href=\"#updateenterpriseprofile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseProfile</h2>\n  <p>Updates an enterprise&apos;s profile.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterpriseprofileinput\">UpdateEnterpriseProfileInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssetting\">\n      <a href=\"#updateenterpriserepositoryprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseRepositoryProjectsSetting</h2>\n  <p>Sets whether repository projects are enabled for a enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterpriserepositoryprojectssettinginput\">UpdateEnterpriseRepositoryProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssetting\">\n      <a href=\"#updateenterpriseteamdiscussionssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTeamDiscussionsSetting</h2>\n  <p>Sets whether team discussions are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterpriseteamdiscussionssettinginput\">UpdateEnterpriseTeamDiscussionsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsetting\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTwoFactorAuthenticationRequiredSetting</h2>\n  <p>Sets whether two factor authentication is required for all users in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenterprisetwofactorauthenticationrequiredsettinginput\">UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironment\">\n      <a href=\"#updateenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnvironment</h2>\n  <p>Updates an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateenvironmentinput\">UpdateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The updated environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsetting\">\n      <a href=\"#updateipallowlistenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEnabledSetting</h2>\n  <p>Sets whether an IP allow list is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateipallowlistenabledsettinginput\">UpdateIpAllowListEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentry\">\n      <a href=\"#updateipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEntry</h2>\n  <p>Updates an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateipallowlistentryinput\">UpdateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsetting\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListForInstalledAppsEnabledSetting</h2>\n  <p>Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateipallowlistforinstalledappsenabledsettinginput\">UpdateIpAllowListForInstalledAppsEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissue\">\n      <a href=\"#updateissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssue</h2>\n  <p>Updates an Issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateissueinput\">UpdateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecomment\">\n      <a href=\"#updateissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssueComment</h2>\n  <p>Updates an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateissuecommentinput\">UpdateIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabel\">\n      <a href=\"#updatelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateLabel</h2>\n  <p>Updates an existing label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateLabel</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatelabelinput\">UpdateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The updated label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsetting\">\n      <a href=\"#updatenotificationrestrictionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateNotificationRestrictionSetting</h2>\n  <p>Update the setting to restrict notifications to only verified or approved domains available to an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatenotificationrestrictionsettinginput\">UpdateNotificationRestrictionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateOrganizationAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput\">UpdateOrganizationAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateproject\">\n      <a href=\"#updateproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProject</h2>\n  <p>Updates an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateprojectinput\">UpdateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The updated project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcard\">\n      <a href=\"#updateprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectCard</h2>\n  <p>Updates an existing project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateprojectcardinput\">UpdateProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumn\">\n      <a href=\"#updateprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectColumn</h2>\n  <p>Updates an existing project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateprojectcolumninput\">UpdateProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The updated project column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequest\">\n      <a href=\"#updatepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequest</h2>\n  <p>Update a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatepullrequestinput\">UpdatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranch\">\n      <a href=\"#updatepullrequestbranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestBranch</h2>\n  <p>Merge HEAD from upstream branch into pull request branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatepullrequestbranchinput\">UpdatePullRequestBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreview\">\n      <a href=\"#updatepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReview</h2>\n  <p>Updates the body of a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatepullrequestreviewinput\">UpdatePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The updated pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcomment\">\n      <a href=\"#updatepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReviewComment</h2>\n  <p>Updates a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatepullrequestreviewcommentinput\">UpdatePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewComment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateref\">\n      <a href=\"#updateref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRef</h2>\n  <p>Update a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updaterefinput\">UpdateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The updated Ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefs\">\n      <a href=\"#updaterefs\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRefs</h2>\n  <p>Creates, updates and/or deletes multiple refs in a repository.</p>\n<p>This mutation takes a list of <code>RefUpdate</code>s 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.</p>\n<p><code>RefUpdate.beforeOid</code> specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to verify that\nthe references should not exist.</p>\n<p><code>RefUpdate.afterOid</code> specifies the value that the given reference\nwill point to after performing all updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to delete a\nreference.</p>\n<p>If <code>RefUpdate.force</code> is set to <code>true</code>, a non-fast-forward updates\nfor the given reference will be allowed.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateRefs</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updaterefsinput\">UpdateRefsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepository\">\n      <a href=\"#updaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRepository</h2>\n  <p>Update information about a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updaterepositoryinput\">UpdateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscription\">\n      <a href=\"#updatesubscription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSubscription</h2>\n  <p>Updates the state for subscribable subjects.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatesubscriptioninput\">UpdateSubscriptionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable</a></code>)</p></td>\n<td><p>The input subscribable entity.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussion\">\n      <a href=\"#updateteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussion</h2>\n  <p>Updates a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateteamdiscussioninput\">UpdateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The updated discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncomment\">\n      <a href=\"#updateteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussionComment</h2>\n  <p>Updates a discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateteamdiscussioncommentinput\">UpdateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignment\">\n      <a href=\"#updateteamreviewassignment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamReviewAssignment</h2>\n  <p>Updates team review assignment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateTeamReviewAssignment</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updateteamreviewassignmentinput\">UpdateTeamReviewAssignmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team that was modified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopics\">\n      <a href=\"#updatetopics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTopics</h2>\n  <p>Replaces the repository&apos;s topics with the given topics.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#updatetopicsinput\">UpdateTopicsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invalidTopicNames</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Names of the provided topics that are not valid.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomain\">\n      <a href=\"#verifyverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>verifyVerifiableDomain</h2>\n  <p>Verify that a verifiable domain has the expected DNS record.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#verifyverifiabledomaininput\">VerifyVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was verified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcomment\">\n      addComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcomment\">\n      addComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcard\">\n      addProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcard\">\n      addProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreaction\">\n      addReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreaction\">\n      addReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstar\">\n      addStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstar\">\n      addStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvote\">\n      addUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvote\">\n      addUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeployments\">\n      approveDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeployments\">\n      approveDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepository\">\n      archiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepository\">\n      archiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneproject\">\n      cloneProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneproject\">\n      cloneProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissue\">\n      closeIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissue\">\n      closeIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequest\">\n      closePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequest\">\n      closePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckrun\">\n      createCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckrun\">\n      createCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeployment\">\n      createDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeployment\">\n      createDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussion\">\n      createDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussion\">\n      createDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironment\">\n      createEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironment\">\n      createEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissue\">\n      createIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissue\">\n      createIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabel\">\n      createLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabel\">\n      createLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createproject\">\n      createProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createproject\">\n      createProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequest\">\n      createPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequest\">\n      createPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createref\">\n      createRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createref\">\n      createRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepository\">\n      createRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepository\">\n      createRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissue\">\n      deleteIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissue\">\n      deleteIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabel\">\n      deleteLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabel\">\n      deleteLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteproject\">\n      deleteProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteproject\">\n      deleteProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteref\">\n      deleteRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteref\">\n      deleteRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismissrepositoryvulnerabilityalert\">\n      dismissRepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismissrepositoryvulnerabilityalert\">\n      dismissRepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuser\">\n      followUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuser\">\n      followUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importproject\">\n      importProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importproject\">\n      importProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockable\">\n      lockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockable\">\n      lockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranch\">\n      mergeBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranch\">\n      mergeBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecomment\">\n      minimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecomment\">\n      minimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissue\">\n      pinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissue\">\n      pinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereaction\">\n      removeReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereaction\">\n      removeReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestar\">\n      removeStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestar\">\n      removeStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvote\">\n      removeUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvote\">\n      removeUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissue\">\n      reopenIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissue\">\n      reopenIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviews\">\n      requestReviews</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviews\">\n      requestReviews</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissue\">\n      transferIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissue\">\n      transferIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuser\">\n      unfollowUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuser\">\n      unfollowUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockable\">\n      unlockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockable\">\n      unlockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissue\">\n      unpinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissue\">\n      unpinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissue\">\n      updateIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissue\">\n      updateIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabel\">\n      updateLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabel\">\n      updateLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateorganizationallowprivaterepositoryforkingsetting\">\n      updateOrganizationAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateorganizationallowprivaterepositoryforkingsetting\">\n      updateOrganizationAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateproject\">\n      updateProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateproject\">\n      updateProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestbranch\">\n      updatePullRequestBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestbranch\">\n      updatePullRequestBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateref\">\n      updateRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateref\">\n      updateRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefs\">\n      updateRefs</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefs\">\n      updateRefs</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepository\">\n      updateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepository\">\n      updateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscription\">\n      updateSubscription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscription\">\n      updateSubscription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopics\">\n      updateTopics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopics\">\n      updateTopics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -3574,1036 +3574,1036 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignable\">\n      <a href=\"#addassigneestoassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addAssigneesToAssignable</h2>\n  <p>Adds assignees to an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addassigneestoassignableinput\">AddAssigneesToAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was assigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcomment\">\n      <a href=\"#addcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addComment</h2>\n  <p>Adds a comment to an Issue or Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addcommentinput\">AddCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuecommentedge\">IssueCommentEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>)</p></td>\n<td><p>The subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineEdge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuetimelineitemedge\">IssueTimelineItemEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s timeline connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncomment\">\n      <a href=\"#adddiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addDiscussionComment</h2>\n  <p>Adds a comment to a Discussion, possibly as a reply to another comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#adddiscussioncommentinput\">AddDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The newly created discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmin\">\n      <a href=\"#addenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addEnterpriseAdmin</h2>\n  <p>Adds an administrator to the global enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addenterpriseadmininput\">AddEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was added as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelable\">\n      <a href=\"#addlabelstolabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addLabelsToLabelable</h2>\n  <p>Adds labels to a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addlabelstolabelableinput\">AddLabelsToLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was labeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcard\">\n      <a href=\"#addprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectCard</h2>\n  <p>Adds a card to a ProjectColumn. Either <code>contentId</code> or <code>note</code> must be provided but <strong>not</strong> both.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addprojectcardinput\">AddProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The edge from the ProjectColumn&apos;s card connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The ProjectColumn.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumn\">\n      <a href=\"#addprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectColumn</h2>\n  <p>Adds a column to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addprojectcolumninput\">AddProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The edge from the project&apos;s column connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreview\">\n      <a href=\"#addpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReview</h2>\n  <p>Adds a review to a Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addpullrequestreviewinput\">AddPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The newly created pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewEdge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewedge\">PullRequestReviewEdge</a></code>)</p></td>\n<td><p>The edge from the pull request&apos;s review connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcomment\">\n      <a href=\"#addpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewComment</h2>\n  <p>Adds a comment to a review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addpullrequestreviewcommentinput\">AddPullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The newly created comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcommentedge\">PullRequestReviewCommentEdge</a></code>)</p></td>\n<td><p>The edge from the review&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthread\">\n      <a href=\"#addpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewThread</h2>\n  <p>Adds a new thread to a pending Pull Request Review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addpullrequestreviewthreadinput\">AddPullRequestReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The newly created thread.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreaction\">\n      <a href=\"#addreaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addReaction</h2>\n  <p>Adds a reaction to a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addreactioninput\">AddReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstar\">\n      <a href=\"#addstar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addStar</h2>\n  <p>Adds a star to a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addstarinput\">AddStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvote\">\n      <a href=\"#addupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addUpvote</h2>\n  <p>Add an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addupvoteinput\">AddUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomain\">\n      <a href=\"#addverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addVerifiableDomain</h2>\n  <p>Adds a verifiable domain to an owning account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#addverifiabledomaininput\">AddVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was added.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeployments\">\n      <a href=\"#approvedeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveDeployments</h2>\n  <p>Approve all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#approvedeploymentsinput\">ApproveDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomain\">\n      <a href=\"#approveverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveVerifiableDomain</h2>\n  <p>Approve a verifiable domain for notification delivery.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#approveverifiabledomaininput\">ApproveVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was approved.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepository\">\n      <a href=\"#archiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>archiveRepository</h2>\n  <p>Marks a repository as archived.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#archiverepositoryinput\">ArchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was marked as archived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatus\">\n      <a href=\"#changeuserstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>changeUserStatus</h2>\n  <p>Update your status on GitHub.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#changeuserstatusinput\">ChangeUserStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>Your updated status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelable\">\n      <a href=\"#clearlabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>clearLabelsFromLabelable</h2>\n  <p>Clears all labels from a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#clearlabelsfromlabelableinput\">ClearLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was unlabeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneproject\">\n      <a href=\"#cloneproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneProject</h2>\n  <p>Creates a new project by cloning configuration from an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#cloneprojectinput\">CloneProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>jobStatusId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The id of the JobStatus for populating cloned fields.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new cloned project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepository\">\n      <a href=\"#clonetemplaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneTemplateRepository</h2>\n  <p>Create a new repository with the same files and directory structure as a template repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#clonetemplaterepositoryinput\">CloneTemplateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissue\">\n      <a href=\"#closeissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closeIssue</h2>\n  <p>Close an issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#closeissueinput\">CloseIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequest\">\n      <a href=\"#closepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closePullRequest</h2>\n  <p>Close a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#closepullrequestinput\">ClosePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissue\">\n      <a href=\"#convertprojectcardnotetoissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertProjectCardNoteToIssue</h2>\n  <p>Convert a project note card to one associated with a newly created issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#convertprojectcardnotetoissueinput\">ConvertProjectCardNoteToIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraft\">\n      <a href=\"#convertpullrequesttodraft\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertPullRequestToDraft</h2>\n  <p>Converts a pull request to draft.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#convertpullrequesttodraftinput\">ConvertPullRequestToDraftInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is now a draft.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionrule\">\n      <a href=\"#createbranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createbranchprotectionruleinput\">CreateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckrun\">\n      <a href=\"#createcheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckRun</h2>\n  <p>Create a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createcheckruninput\">CreateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The newly created check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuite\">\n      <a href=\"#createchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckSuite</h2>\n  <p>Create a check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createchecksuiteinput\">CreateCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The newly created check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranch\">\n      <a href=\"#createcommitonbranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCommitOnBranch</h2>\n  <p>Appends a commit to the given branch as the authenticated user.</p>\n<p>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 <code>git commit</code>.</p>\n<h3 id=\"locating-a-branch\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#locating-a-branch\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Locating a Branch</h3>\n<p>Commits are appended to a <code>branch</code> of type <code>Ref</code>.\nThis must refer to a git branch (i.e.  the fully qualified path must\nbegin with <code>refs/heads/</code>, although including this prefix is optional.</p>\n<p>Callers may specify the <code>branch</code> to commit to either by its global node\nID or by passing both of <code>repositoryNameWithOwner</code> and <code>refName</code>.  For\nmore details see the documentation for <code>CommittableBranch</code>.</p>\n<h3 id=\"describing-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#describing-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Describing Changes</h3>\n<p><code>fileChanges</code> are specified as a <code>FilesChanges</code> object describing\n<code>FileAdditions</code> and <code>FileDeletions</code>.</p>\n<p>Please see the documentation for <code>FileChanges</code> for more information on\nhow to use this argument to describe any set of file changes.</p>\n<h3 id=\"authorship\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#authorship\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Authorship</h3>\n<p>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.</p>\n<p>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.</p>\n<p>If you need full control over author and committer information, please\nuse the Git Database REST API instead.</p>\n<h3 id=\"commit-signing\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#commit-signing\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Commit Signing</h3>\n<p>Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createcommitonbranchinput\">CreateCommitOnBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref which has been updated to point to the new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcontentattachment\">\n      <a href=\"#createcontentattachment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createContentAttachment</h2>\n  <p>Create a content attachment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createContentAttachment</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#create-content-attachments-preview\">Create content attachments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createcontentattachmentinput\">CreateContentAttachmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentAttachment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#contentattachment\">ContentAttachment</a></code>)</p></td>\n<td><p>The newly created content attachment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeployment\">\n      <a href=\"#createdeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeployment</h2>\n  <p>Creates a new deployment event.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeployment</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createdeploymentinput\">CreateDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerged</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>True if the default branch has been auto-merged into the deployment ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The new deployment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatus\">\n      <a href=\"#createdeploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeploymentStatus</h2>\n  <p>Create a deployment status.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeploymentStatus</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createdeploymentstatusinput\">CreateDeploymentStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The new deployment status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussion\">\n      <a href=\"#creatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDiscussion</h2>\n  <p>Create a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#creatediscussioninput\">CreateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganization\">\n      <a href=\"#createenterpriseorganization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnterpriseOrganization</h2>\n  <p>Creates an organization as part of an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createenterpriseorganizationinput\">CreateEnterpriseOrganizationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise that owns the created organization.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironment\">\n      <a href=\"#createenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnvironment</h2>\n  <p>Creates an environment or simply returns it if already exists.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createenvironmentinput\">CreateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The new or existing environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentry\">\n      <a href=\"#createipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIpAllowListEntry</h2>\n  <p>Creates a new IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createipallowlistentryinput\">CreateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissue\">\n      <a href=\"#createissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIssue</h2>\n  <p>Creates a new issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createissueinput\">CreateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The new issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabel\">\n      <a href=\"#createlabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createLabel</h2>\n  <p>Creates a new label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createLabel</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createlabelinput\">CreateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The new label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createproject\">\n      <a href=\"#createproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createProject</h2>\n  <p>Creates a new project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createprojectinput\">CreateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequest\">\n      <a href=\"#createpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createPullRequest</h2>\n  <p>Create a new pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createpullrequestinput\">CreatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The new pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createref\">\n      <a href=\"#createref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRef</h2>\n  <p>Create a new Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createrefinput\">CreateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The newly created ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepository\">\n      <a href=\"#createrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRepository</h2>\n  <p>Create a new repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createrepositoryinput\">CreateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussion\">\n      <a href=\"#createteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussion</h2>\n  <p>Creates a new team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createteamdiscussioninput\">CreateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The new discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncomment\">\n      <a href=\"#createteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussionComment</h2>\n  <p>Creates a new team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#createteamdiscussioncommentinput\">CreateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The new comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionrule\">\n      <a href=\"#deletebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteBranchProtectionRule</h2>\n  <p>Delete a branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deletebranchprotectionruleinput\">DeleteBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeployment\">\n      <a href=\"#deletedeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDeployment</h2>\n  <p>Deletes a deployment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deletedeploymentinput\">DeleteDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussion\">\n      <a href=\"#deletediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussion</h2>\n  <p>Delete a discussion and all of its replies.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deletediscussioninput\">DeleteDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncomment\">\n      <a href=\"#deletediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussionComment</h2>\n  <p>Delete a discussion comment. If it has replies, wipe it instead.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deletediscussioncommentinput\">DeleteDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironment\">\n      <a href=\"#deleteenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteEnvironment</h2>\n  <p>Deletes an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteenvironmentinput\">DeleteEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentry\">\n      <a href=\"#deleteipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIpAllowListEntry</h2>\n  <p>Deletes an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteipallowlistentryinput\">DeleteIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissue\">\n      <a href=\"#deleteissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssue</h2>\n  <p>Deletes an Issue object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteissueinput\">DeleteIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository the issue belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecomment\">\n      <a href=\"#deleteissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssueComment</h2>\n  <p>Deletes an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteissuecommentinput\">DeleteIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabel\">\n      <a href=\"#deletelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteLabel</h2>\n  <p>Deletes a label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deleteLabel</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deletelabelinput\">DeleteLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversion\">\n      <a href=\"#deletepackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePackageVersion</h2>\n  <p>Delete a package version.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deletePackageVersion</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#access-to-package-version-deletion-preview\">Access to package version deletion preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deletepackageversioninput\">DeletePackageVersionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the operation succeeded.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteproject\">\n      <a href=\"#deleteproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProject</h2>\n  <p>Deletes a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteprojectinput\">DeleteProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>)</p></td>\n<td><p>The repository or organization the project was removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcard\">\n      <a href=\"#deleteprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectCard</h2>\n  <p>Deletes a project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteprojectcardinput\">DeleteProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The column the deleted card was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCardId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted card ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumn\">\n      <a href=\"#deleteprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectColumn</h2>\n  <p>Deletes a project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteprojectcolumninput\">DeleteProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedColumnId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted column ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project the deleted column was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreview\">\n      <a href=\"#deletepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReview</h2>\n  <p>Deletes a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deletepullrequestreviewinput\">DeletePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The deleted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcomment\">\n      <a href=\"#deletepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReviewComment</h2>\n  <p>Deletes a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deletepullrequestreviewcommentinput\">DeletePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review the deleted comment belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteref\">\n      <a href=\"#deleteref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteRef</h2>\n  <p>Delete a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleterefinput\">DeleteRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussion\">\n      <a href=\"#deleteteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussion</h2>\n  <p>Deletes a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteteamdiscussioninput\">DeleteTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncomment\">\n      <a href=\"#deleteteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussionComment</h2>\n  <p>Deletes a team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteteamdiscussioncommentinput\">DeleteTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomain\">\n      <a href=\"#deleteverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteVerifiableDomain</h2>\n  <p>Deletes a verifiable domain.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deleteverifiabledomaininput\">DeleteVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owning account from which the domain was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomerge\">\n      <a href=\"#disablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>disablePullRequestAutoMerge</h2>\n  <p>Disable auto merge on the given pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#disablepullrequestautomergeinput\">DisablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto merge was disabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreview\">\n      <a href=\"#dismisspullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissPullRequestReview</h2>\n  <p>Dismisses an approved or rejected pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#dismisspullrequestreviewinput\">DismissPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The dismissed pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomerge\">\n      <a href=\"#enablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>enablePullRequestAutoMerge</h2>\n  <p>Enable the default auto-merge on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#enablepullrequestautomergeinput\">EnablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto-merge was enabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuser\">\n      <a href=\"#followuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>followUser</h2>\n  <p>Follow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#followuserinput\">FollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was followed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importproject\">\n      <a href=\"#importproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>importProject</h2>\n  <p>Creates a new project by importing columns and a list of issues/PRs.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>importProject</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#import-project-preview\">Import project preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#importprojectinput\">ImportProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new Project!.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoproject\">\n      <a href=\"#linkrepositorytoproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>linkRepositoryToProject</h2>\n  <p>Creates a repository link for a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#linkrepositorytoprojectinput\">LinkRepositoryToProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockable\">\n      <a href=\"#locklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>lockLockable</h2>\n  <p>Lock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#locklockableinput\">LockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockedRecord</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was locked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswer\">\n      <a href=\"#markdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markDiscussionCommentAsAnswer</h2>\n  <p>Mark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#markdiscussioncommentasanswerinput\">MarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the chosen comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewed\">\n      <a href=\"#markfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markFileAsViewed</h2>\n  <p>Mark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#markfileasviewedinput\">MarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreview\">\n      <a href=\"#markpullrequestreadyforreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markPullRequestReadyForReview</h2>\n  <p>Marks a pull request ready for review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#markpullrequestreadyforreviewinput\">MarkPullRequestReadyForReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is ready for review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranch\">\n      <a href=\"#mergebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergeBranch</h2>\n  <p>Merge a head into a branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#mergebranchinput\">MergeBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The resulting merge Commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequest\">\n      <a href=\"#mergepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergePullRequest</h2>\n  <p>Merge a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#mergepullrequestinput\">MergePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was merged.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecomment\">\n      <a href=\"#minimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>minimizeComment</h2>\n  <p>Minimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#minimizecommentinput\">MinimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedComment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was minimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcard\">\n      <a href=\"#moveprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectCard</h2>\n  <p>Moves a project card to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#moveprojectcardinput\">MoveProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The new edge of the moved card.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumn\">\n      <a href=\"#moveprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectColumn</h2>\n  <p>Moves a project column to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#moveprojectcolumninput\">MoveProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The new edge of the moved column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissue\">\n      <a href=\"#pinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>pinIssue</h2>\n  <p>Pin an issue to a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#pinissueinput\">PinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintoken\">\n      <a href=\"#regenerateverifiabledomaintoken\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>regenerateVerifiableDomainToken</h2>\n  <p>Regenerates a verifiable domain&apos;s verification token.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#regenerateverifiabledomaintokeninput\">RegenerateVerifiableDomainTokenInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The verification token that was generated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeployments\">\n      <a href=\"#rejectdeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rejectDeployments</h2>\n  <p>Reject all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#rejectdeploymentsinput\">RejectDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignable\">\n      <a href=\"#removeassigneesfromassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeAssigneesFromAssignable</h2>\n  <p>Removes assignees from an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#removeassigneesfromassignableinput\">RemoveAssigneesFromAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was unassigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmin\">\n      <a href=\"#removeenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseAdmin</h2>\n  <p>Removes an administrator from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#removeenterpriseadmininput\">RemoveEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was removed as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelable\">\n      <a href=\"#removelabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeLabelsFromLabelable</h2>\n  <p>Removes labels from a Labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#removelabelsfromlabelableinput\">RemoveLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The Labelable the labels were removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaborator\">\n      <a href=\"#removeoutsidecollaborator\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeOutsideCollaborator</h2>\n  <p>Removes outside collaborator from all repositories in an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#removeoutsidecollaboratorinput\">RemoveOutsideCollaboratorInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>removedUser</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was removed as an outside collaborator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereaction\">\n      <a href=\"#removereaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeReaction</h2>\n  <p>Removes a reaction from a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#removereactioninput\">RemoveReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestar\">\n      <a href=\"#removestar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeStar</h2>\n  <p>Removes a star from a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#removestarinput\">RemoveStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvote\">\n      <a href=\"#removeupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeUpvote</h2>\n  <p>Remove an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#removeupvoteinput\">RemoveUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissue\">\n      <a href=\"#reopenissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenIssue</h2>\n  <p>Reopen a issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reopenissueinput\">ReopenIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequest\">\n      <a href=\"#reopenpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenPullRequest</h2>\n  <p>Reopen a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reopenpullrequestinput\">ReopenPullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was reopened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviews\">\n      <a href=\"#requestreviews\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>requestReviews</h2>\n  <p>Set review requests on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#requestreviewsinput\">RequestReviewsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is getting requests.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewersEdge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#useredge\">UserEdge</a></code>)</p></td>\n<td><p>The edge from the pull request to the requested reviewers.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuite\">\n      <a href=\"#rerequestchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rerequestCheckSuite</h2>\n  <p>Rerequests an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#rerequestchecksuiteinput\">RerequestCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The requested check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthread\">\n      <a href=\"#resolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>resolveReviewThread</h2>\n  <p>Marks a review thread as resolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#resolvereviewthreadinput\">ResolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreview\">\n      <a href=\"#submitpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>submitPullRequestReview</h2>\n  <p>Submits a pending pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#submitpullrequestreviewinput\">SubmitPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The submitted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissue\">\n      <a href=\"#transferissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>transferIssue</h2>\n  <p>Transfer an issue to a different repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#transferissueinput\">TransferIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was transferred.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepository\">\n      <a href=\"#unarchiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unarchiveRepository</h2>\n  <p>Unarchives a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unarchiverepositoryinput\">UnarchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was unarchived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuser\">\n      <a href=\"#unfollowuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unfollowUser</h2>\n  <p>Unfollow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unfollowuserinput\">UnfollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was unfollowed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromproject\">\n      <a href=\"#unlinkrepositoryfromproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlinkRepositoryFromProject</h2>\n  <p>Deletes a repository link from a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unlinkrepositoryfromprojectinput\">UnlinkRepositoryFromProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockable\">\n      <a href=\"#unlocklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlockLockable</h2>\n  <p>Unlock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unlocklockableinput\">UnlockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unlockedRecord</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was unlocked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswer\">\n      <a href=\"#unmarkdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkDiscussionCommentAsAnswer</h2>\n  <p>Unmark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unmarkdiscussioncommentasanswerinput\">UnmarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewed\">\n      <a href=\"#unmarkfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkFileAsViewed</h2>\n  <p>Unmark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unmarkfileasviewedinput\">UnmarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicate\">\n      <a href=\"#unmarkissueasduplicate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkIssueAsDuplicate</h2>\n  <p>Unmark an issue as a duplicate of another issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unmarkissueasduplicateinput\">UnmarkIssueAsDuplicateInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request that was marked as a duplicate.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecomment\">\n      <a href=\"#unminimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unminimizeComment</h2>\n  <p>Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unminimizecommentinput\">UnminimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unminimizedComment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was unminimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissue\">\n      <a href=\"#unpinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unpinIssue</h2>\n  <p>Unpin a pinned issue from a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unpinissueinput\">UnpinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was unpinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthread\">\n      <a href=\"#unresolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unresolveReviewThread</h2>\n  <p>Marks a review thread as unresolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#unresolvereviewthreadinput\">UnresolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionrule\">\n      <a href=\"#updatebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatebranchprotectionruleinput\">UpdateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckrun\">\n      <a href=\"#updatecheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckRun</h2>\n  <p>Update a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatecheckruninput\">UpdateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The updated check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferences\">\n      <a href=\"#updatechecksuitepreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckSuitePreferences</h2>\n  <p>Modifies the settings of an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatechecksuitepreferencesinput\">UpdateCheckSuitePreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussion\">\n      <a href=\"#updatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussion</h2>\n  <p>Update a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatediscussioninput\">UpdateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The modified discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncomment\">\n      <a href=\"#updatediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussionComment</h2>\n  <p>Update the contents of a comment on a Discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatediscussioncommentinput\">UpdateDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The modified discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterpriseallowprivaterepositoryforkingsettinginput\">UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsetting\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseDefaultRepositoryPermissionSetting</h2>\n  <p>Sets the base repository permission for organizations in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisedefaultrepositorypermissionsettinginput\">UpdateEnterpriseDefaultRepositoryPermissionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</h2>\n  <p>Sets whether organization members with admin permissions on a repository can change repository visibility.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessetting\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanCreateRepositoriesSetting</h2>\n  <p>Sets the members can create repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisememberscancreaterepositoriessettinginput\">UpdateEnterpriseMembersCanCreateRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessetting\">\n      <a href=\"#updateenterprisememberscandeleteissuessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteIssuesSetting</h2>\n  <p>Sets the members can delete issues setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisememberscandeleteissuessettinginput\">UpdateEnterpriseMembersCanDeleteIssuesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessetting\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteRepositoriesSetting</h2>\n  <p>Sets the members can delete repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisememberscandeleterepositoriessettinginput\">UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssetting\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanInviteCollaboratorsSetting</h2>\n  <p>Sets whether members can invite collaborators are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisememberscaninvitecollaboratorssettinginput\">UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessetting\">\n      <a href=\"#updateenterprisememberscanmakepurchasessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanMakePurchasesSetting</h2>\n  <p>Sets whether or not an organization admin can make purchases.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisememberscanmakepurchasessettinginput\">UpdateEnterpriseMembersCanMakePurchasesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessetting\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanUpdateProtectedBranchesSetting</h2>\n  <p>Sets the members can update protected branches setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisememberscanupdateprotectedbranchessettinginput\">UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssetting\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanViewDependencyInsightsSetting</h2>\n  <p>Sets the members can view dependency insights for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisememberscanviewdependencyinsightssettinginput\">UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssetting\">\n      <a href=\"#updateenterpriseorganizationprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOrganizationProjectsSetting</h2>\n  <p>Sets whether organization projects are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterpriseorganizationprojectssettinginput\">UpdateEnterpriseOrganizationProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofile\">\n      <a href=\"#updateenterpriseprofile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseProfile</h2>\n  <p>Updates an enterprise&apos;s profile.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterpriseprofileinput\">UpdateEnterpriseProfileInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssetting\">\n      <a href=\"#updateenterpriserepositoryprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseRepositoryProjectsSetting</h2>\n  <p>Sets whether repository projects are enabled for a enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterpriserepositoryprojectssettinginput\">UpdateEnterpriseRepositoryProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssetting\">\n      <a href=\"#updateenterpriseteamdiscussionssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTeamDiscussionsSetting</h2>\n  <p>Sets whether team discussions are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterpriseteamdiscussionssettinginput\">UpdateEnterpriseTeamDiscussionsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsetting\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTwoFactorAuthenticationRequiredSetting</h2>\n  <p>Sets whether two factor authentication is required for all users in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenterprisetwofactorauthenticationrequiredsettinginput\">UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironment\">\n      <a href=\"#updateenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnvironment</h2>\n  <p>Updates an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateenvironmentinput\">UpdateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The updated environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsetting\">\n      <a href=\"#updateipallowlistenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEnabledSetting</h2>\n  <p>Sets whether an IP allow list is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateipallowlistenabledsettinginput\">UpdateIpAllowListEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentry\">\n      <a href=\"#updateipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEntry</h2>\n  <p>Updates an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateipallowlistentryinput\">UpdateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsetting\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListForInstalledAppsEnabledSetting</h2>\n  <p>Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateipallowlistforinstalledappsenabledsettinginput\">UpdateIpAllowListForInstalledAppsEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissue\">\n      <a href=\"#updateissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssue</h2>\n  <p>Updates an Issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateissueinput\">UpdateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecomment\">\n      <a href=\"#updateissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssueComment</h2>\n  <p>Updates an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateissuecommentinput\">UpdateIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabel\">\n      <a href=\"#updatelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateLabel</h2>\n  <p>Updates an existing label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateLabel</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatelabelinput\">UpdateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The updated label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsetting\">\n      <a href=\"#updatenotificationrestrictionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateNotificationRestrictionSetting</h2>\n  <p>Update the setting to restrict notifications to only verified or approved domains available to an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatenotificationrestrictionsettinginput\">UpdateNotificationRestrictionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateproject\">\n      <a href=\"#updateproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProject</h2>\n  <p>Updates an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateprojectinput\">UpdateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The updated project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcard\">\n      <a href=\"#updateprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectCard</h2>\n  <p>Updates an existing project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateprojectcardinput\">UpdateProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumn\">\n      <a href=\"#updateprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectColumn</h2>\n  <p>Updates an existing project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateprojectcolumninput\">UpdateProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The updated project column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequest\">\n      <a href=\"#updatepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequest</h2>\n  <p>Update a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatepullrequestinput\">UpdatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreview\">\n      <a href=\"#updatepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReview</h2>\n  <p>Updates the body of a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatepullrequestreviewinput\">UpdatePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The updated pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcomment\">\n      <a href=\"#updatepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReviewComment</h2>\n  <p>Updates a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatepullrequestreviewcommentinput\">UpdatePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewComment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateref\">\n      <a href=\"#updateref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRef</h2>\n  <p>Update a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updaterefinput\">UpdateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The updated Ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefs\">\n      <a href=\"#updaterefs\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRefs</h2>\n  <p>Creates, updates and/or deletes multiple refs in a repository.</p>\n<p>This mutation takes a list of <code>RefUpdate</code>s 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.</p>\n<p><code>RefUpdate.beforeOid</code> specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to verify that\nthe references should not exist.</p>\n<p><code>RefUpdate.afterOid</code> specifies the value that the given reference\nwill point to after performing all updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to delete a\nreference.</p>\n<p>If <code>RefUpdate.force</code> is set to <code>true</code>, a non-fast-forward updates\nfor the given reference will be allowed.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateRefs</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updaterefsinput\">UpdateRefsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepository\">\n      <a href=\"#updaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRepository</h2>\n  <p>Update information about a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updaterepositoryinput\">UpdateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscription\">\n      <a href=\"#updatesubscription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSubscription</h2>\n  <p>Updates the state for subscribable subjects.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatesubscriptioninput\">UpdateSubscriptionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable</a></code>)</p></td>\n<td><p>The input subscribable entity.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussion\">\n      <a href=\"#updateteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussion</h2>\n  <p>Updates a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateteamdiscussioninput\">UpdateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The updated discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncomment\">\n      <a href=\"#updateteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussionComment</h2>\n  <p>Updates a discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateteamdiscussioncommentinput\">UpdateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignment\">\n      <a href=\"#updateteamreviewassignment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamReviewAssignment</h2>\n  <p>Updates team review assignment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateTeamReviewAssignment</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updateteamreviewassignmentinput\">UpdateTeamReviewAssignmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team that was modified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopics\">\n      <a href=\"#updatetopics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTopics</h2>\n  <p>Replaces the repository&apos;s topics with the given topics.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#updatetopicsinput\">UpdateTopicsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invalidTopicNames</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Names of the provided topics that are not valid.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomain\">\n      <a href=\"#verifyverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>verifyVerifiableDomain</h2>\n  <p>Verify that a verifiable domain has the expected DNS record.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#verifyverifiabledomaininput\">VerifyVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was verified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcomment\">\n      addComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcomment\">\n      addComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcard\">\n      addProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcard\">\n      addProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreaction\">\n      addReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreaction\">\n      addReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstar\">\n      addStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstar\">\n      addStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvote\">\n      addUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvote\">\n      addUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeployments\">\n      approveDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeployments\">\n      approveDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepository\">\n      archiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepository\">\n      archiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneproject\">\n      cloneProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneproject\">\n      cloneProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissue\">\n      closeIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissue\">\n      closeIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequest\">\n      closePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequest\">\n      closePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckrun\">\n      createCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckrun\">\n      createCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcontentattachment\">\n      createContentAttachment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcontentattachment\">\n      createContentAttachment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeployment\">\n      createDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeployment\">\n      createDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussion\">\n      createDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussion\">\n      createDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironment\">\n      createEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironment\">\n      createEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissue\">\n      createIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissue\">\n      createIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabel\">\n      createLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabel\">\n      createLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createproject\">\n      createProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createproject\">\n      createProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequest\">\n      createPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequest\">\n      createPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createref\">\n      createRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createref\">\n      createRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepository\">\n      createRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepository\">\n      createRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissue\">\n      deleteIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissue\">\n      deleteIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabel\">\n      deleteLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabel\">\n      deleteLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteproject\">\n      deleteProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteproject\">\n      deleteProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteref\">\n      deleteRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteref\">\n      deleteRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuser\">\n      followUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuser\">\n      followUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importproject\">\n      importProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importproject\">\n      importProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockable\">\n      lockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockable\">\n      lockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranch\">\n      mergeBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranch\">\n      mergeBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecomment\">\n      minimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecomment\">\n      minimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissue\">\n      pinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissue\">\n      pinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereaction\">\n      removeReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereaction\">\n      removeReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestar\">\n      removeStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestar\">\n      removeStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvote\">\n      removeUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvote\">\n      removeUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissue\">\n      reopenIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissue\">\n      reopenIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviews\">\n      requestReviews</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviews\">\n      requestReviews</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissue\">\n      transferIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissue\">\n      transferIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuser\">\n      unfollowUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuser\">\n      unfollowUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockable\">\n      unlockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockable\">\n      unlockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissue\">\n      unpinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissue\">\n      unpinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissue\">\n      updateIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissue\">\n      updateIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabel\">\n      updateLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabel\">\n      updateLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateproject\">\n      updateProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateproject\">\n      updateProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateref\">\n      updateRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateref\">\n      updateRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefs\">\n      updateRefs</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefs\">\n      updateRefs</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepository\">\n      updateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepository\">\n      updateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscription\">\n      updateSubscription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscription\">\n      updateSubscription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopics\">\n      updateTopics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopics\">\n      updateTopics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -4615,1029 +4615,1029 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignable\">\n      <a href=\"#addassigneestoassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addAssigneesToAssignable</h2>\n  <p>Adds assignees to an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addassigneestoassignableinput\">AddAssigneesToAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was assigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcomment\">\n      <a href=\"#addcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addComment</h2>\n  <p>Adds a comment to an Issue or Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addcommentinput\">AddCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuecommentedge\">IssueCommentEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>)</p></td>\n<td><p>The subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineEdge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuetimelineitemedge\">IssueTimelineItemEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s timeline connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncomment\">\n      <a href=\"#adddiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addDiscussionComment</h2>\n  <p>Adds a comment to a Discussion, possibly as a reply to another comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#adddiscussioncommentinput\">AddDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The newly created discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmin\">\n      <a href=\"#addenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addEnterpriseAdmin</h2>\n  <p>Adds an administrator to the global enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addenterpriseadmininput\">AddEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was added as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelable\">\n      <a href=\"#addlabelstolabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addLabelsToLabelable</h2>\n  <p>Adds labels to a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addlabelstolabelableinput\">AddLabelsToLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was labeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcard\">\n      <a href=\"#addprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectCard</h2>\n  <p>Adds a card to a ProjectColumn. Either <code>contentId</code> or <code>note</code> must be provided but <strong>not</strong> both.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addprojectcardinput\">AddProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The edge from the ProjectColumn&apos;s card connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The ProjectColumn.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumn\">\n      <a href=\"#addprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectColumn</h2>\n  <p>Adds a column to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addprojectcolumninput\">AddProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The edge from the project&apos;s column connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreview\">\n      <a href=\"#addpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReview</h2>\n  <p>Adds a review to a Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addpullrequestreviewinput\">AddPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The newly created pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewEdge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewedge\">PullRequestReviewEdge</a></code>)</p></td>\n<td><p>The edge from the pull request&apos;s review connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcomment\">\n      <a href=\"#addpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewComment</h2>\n  <p>Adds a comment to a review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addpullrequestreviewcommentinput\">AddPullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The newly created comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcommentedge\">PullRequestReviewCommentEdge</a></code>)</p></td>\n<td><p>The edge from the review&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthread\">\n      <a href=\"#addpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewThread</h2>\n  <p>Adds a new thread to a pending Pull Request Review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addpullrequestreviewthreadinput\">AddPullRequestReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The newly created thread.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreaction\">\n      <a href=\"#addreaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addReaction</h2>\n  <p>Adds a reaction to a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addreactioninput\">AddReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstar\">\n      <a href=\"#addstar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addStar</h2>\n  <p>Adds a star to a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addstarinput\">AddStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvote\">\n      <a href=\"#addupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addUpvote</h2>\n  <p>Add an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addupvoteinput\">AddUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addverifiabledomain\">\n      <a href=\"#addverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addVerifiableDomain</h2>\n  <p>Adds a verifiable domain to an owning account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#addverifiabledomaininput\">AddVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was added.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeployments\">\n      <a href=\"#approvedeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveDeployments</h2>\n  <p>Approve all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#approvedeploymentsinput\">ApproveDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approveverifiabledomain\">\n      <a href=\"#approveverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveVerifiableDomain</h2>\n  <p>Approve a verifiable domain for notification delivery.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#approveverifiabledomaininput\">ApproveVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was approved.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepository\">\n      <a href=\"#archiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>archiveRepository</h2>\n  <p>Marks a repository as archived.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#archiverepositoryinput\">ArchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was marked as archived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatus\">\n      <a href=\"#changeuserstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>changeUserStatus</h2>\n  <p>Update your status on GitHub.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#changeuserstatusinput\">ChangeUserStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>Your updated status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelable\">\n      <a href=\"#clearlabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>clearLabelsFromLabelable</h2>\n  <p>Clears all labels from a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#clearlabelsfromlabelableinput\">ClearLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was unlabeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneproject\">\n      <a href=\"#cloneproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneProject</h2>\n  <p>Creates a new project by cloning configuration from an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#cloneprojectinput\">CloneProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>jobStatusId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The id of the JobStatus for populating cloned fields.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new cloned project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepository\">\n      <a href=\"#clonetemplaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneTemplateRepository</h2>\n  <p>Create a new repository with the same files and directory structure as a template repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#clonetemplaterepositoryinput\">CloneTemplateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissue\">\n      <a href=\"#closeissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closeIssue</h2>\n  <p>Close an issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#closeissueinput\">CloseIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequest\">\n      <a href=\"#closepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closePullRequest</h2>\n  <p>Close a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#closepullrequestinput\">ClosePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissue\">\n      <a href=\"#convertprojectcardnotetoissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertProjectCardNoteToIssue</h2>\n  <p>Convert a project note card to one associated with a newly created issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#convertprojectcardnotetoissueinput\">ConvertProjectCardNoteToIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraft\">\n      <a href=\"#convertpullrequesttodraft\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertPullRequestToDraft</h2>\n  <p>Converts a pull request to draft.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#convertpullrequesttodraftinput\">ConvertPullRequestToDraftInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is now a draft.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionrule\">\n      <a href=\"#createbranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createbranchprotectionruleinput\">CreateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckrun\">\n      <a href=\"#createcheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckRun</h2>\n  <p>Create a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createcheckruninput\">CreateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The newly created check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuite\">\n      <a href=\"#createchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckSuite</h2>\n  <p>Create a check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createchecksuiteinput\">CreateCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The newly created check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcontentattachment\">\n      <a href=\"#createcontentattachment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createContentAttachment</h2>\n  <p>Create a content attachment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createContentAttachment</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#create-content-attachments-preview\">Create content attachments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createcontentattachmentinput\">CreateContentAttachmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentAttachment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#contentattachment\">ContentAttachment</a></code>)</p></td>\n<td><p>The newly created content attachment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeployment\">\n      <a href=\"#createdeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeployment</h2>\n  <p>Creates a new deployment event.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeployment</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createdeploymentinput\">CreateDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerged</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>True if the default branch has been auto-merged into the deployment ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The new deployment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatus\">\n      <a href=\"#createdeploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeploymentStatus</h2>\n  <p>Create a deployment status.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeploymentStatus</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createdeploymentstatusinput\">CreateDeploymentStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The new deployment status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussion\">\n      <a href=\"#creatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDiscussion</h2>\n  <p>Create a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#creatediscussioninput\">CreateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganization\">\n      <a href=\"#createenterpriseorganization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnterpriseOrganization</h2>\n  <p>Creates an organization as part of an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createenterpriseorganizationinput\">CreateEnterpriseOrganizationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise that owns the created organization.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironment\">\n      <a href=\"#createenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnvironment</h2>\n  <p>Creates an environment or simply returns it if already exists.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createenvironmentinput\">CreateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The new or existing environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentry\">\n      <a href=\"#createipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIpAllowListEntry</h2>\n  <p>Creates a new IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createipallowlistentryinput\">CreateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissue\">\n      <a href=\"#createissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIssue</h2>\n  <p>Creates a new issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createissueinput\">CreateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The new issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabel\">\n      <a href=\"#createlabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createLabel</h2>\n  <p>Creates a new label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createLabel</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createlabelinput\">CreateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The new label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createproject\">\n      <a href=\"#createproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createProject</h2>\n  <p>Creates a new project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createprojectinput\">CreateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequest\">\n      <a href=\"#createpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createPullRequest</h2>\n  <p>Create a new pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createpullrequestinput\">CreatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The new pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createref\">\n      <a href=\"#createref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRef</h2>\n  <p>Create a new Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createrefinput\">CreateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The newly created ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepository\">\n      <a href=\"#createrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRepository</h2>\n  <p>Create a new repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createrepositoryinput\">CreateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussion\">\n      <a href=\"#createteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussion</h2>\n  <p>Creates a new team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createteamdiscussioninput\">CreateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The new discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncomment\">\n      <a href=\"#createteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussionComment</h2>\n  <p>Creates a new team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#createteamdiscussioncommentinput\">CreateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The new comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionrule\">\n      <a href=\"#deletebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteBranchProtectionRule</h2>\n  <p>Delete a branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deletebranchprotectionruleinput\">DeleteBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeployment\">\n      <a href=\"#deletedeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDeployment</h2>\n  <p>Deletes a deployment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deletedeploymentinput\">DeleteDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussion\">\n      <a href=\"#deletediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussion</h2>\n  <p>Delete a discussion and all of its replies.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deletediscussioninput\">DeleteDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncomment\">\n      <a href=\"#deletediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussionComment</h2>\n  <p>Delete a discussion comment. If it has replies, wipe it instead.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deletediscussioncommentinput\">DeleteDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironment\">\n      <a href=\"#deleteenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteEnvironment</h2>\n  <p>Deletes an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteenvironmentinput\">DeleteEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentry\">\n      <a href=\"#deleteipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIpAllowListEntry</h2>\n  <p>Deletes an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteipallowlistentryinput\">DeleteIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissue\">\n      <a href=\"#deleteissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssue</h2>\n  <p>Deletes an Issue object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteissueinput\">DeleteIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository the issue belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecomment\">\n      <a href=\"#deleteissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssueComment</h2>\n  <p>Deletes an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteissuecommentinput\">DeleteIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabel\">\n      <a href=\"#deletelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteLabel</h2>\n  <p>Deletes a label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deleteLabel</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deletelabelinput\">DeleteLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversion\">\n      <a href=\"#deletepackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePackageVersion</h2>\n  <p>Delete a package version.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deletePackageVersion</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#access-to-package-version-deletion-preview\">Access to package version deletion preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deletepackageversioninput\">DeletePackageVersionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the operation succeeded.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteproject\">\n      <a href=\"#deleteproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProject</h2>\n  <p>Deletes a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteprojectinput\">DeleteProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>)</p></td>\n<td><p>The repository or organization the project was removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcard\">\n      <a href=\"#deleteprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectCard</h2>\n  <p>Deletes a project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteprojectcardinput\">DeleteProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The column the deleted card was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCardId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted card ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumn\">\n      <a href=\"#deleteprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectColumn</h2>\n  <p>Deletes a project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteprojectcolumninput\">DeleteProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedColumnId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted column ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project the deleted column was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreview\">\n      <a href=\"#deletepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReview</h2>\n  <p>Deletes a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deletepullrequestreviewinput\">DeletePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The deleted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcomment\">\n      <a href=\"#deletepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReviewComment</h2>\n  <p>Deletes a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deletepullrequestreviewcommentinput\">DeletePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review the deleted comment belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteref\">\n      <a href=\"#deleteref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteRef</h2>\n  <p>Delete a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleterefinput\">DeleteRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussion\">\n      <a href=\"#deleteteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussion</h2>\n  <p>Deletes a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteteamdiscussioninput\">DeleteTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncomment\">\n      <a href=\"#deleteteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussionComment</h2>\n  <p>Deletes a team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteteamdiscussioncommentinput\">DeleteTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteverifiabledomain\">\n      <a href=\"#deleteverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteVerifiableDomain</h2>\n  <p>Deletes a verifiable domain.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deleteverifiabledomaininput\">DeleteVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owning account from which the domain was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomerge\">\n      <a href=\"#disablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>disablePullRequestAutoMerge</h2>\n  <p>Disable auto merge on the given pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#disablepullrequestautomergeinput\">DisablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto merge was disabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreview\">\n      <a href=\"#dismisspullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissPullRequestReview</h2>\n  <p>Dismisses an approved or rejected pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#dismisspullrequestreviewinput\">DismissPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The dismissed pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomerge\">\n      <a href=\"#enablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>enablePullRequestAutoMerge</h2>\n  <p>Enable the default auto-merge on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#enablepullrequestautomergeinput\">EnablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto-merge was enabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuser\">\n      <a href=\"#followuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>followUser</h2>\n  <p>Follow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#followuserinput\">FollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was followed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importproject\">\n      <a href=\"#importproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>importProject</h2>\n  <p>Creates a new project by importing columns and a list of issues/PRs.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>importProject</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#import-project-preview\">Import project preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#importprojectinput\">ImportProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new Project!.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoproject\">\n      <a href=\"#linkrepositorytoproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>linkRepositoryToProject</h2>\n  <p>Creates a repository link for a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#linkrepositorytoprojectinput\">LinkRepositoryToProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockable\">\n      <a href=\"#locklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>lockLockable</h2>\n  <p>Lock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#locklockableinput\">LockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockedRecord</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was locked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswer\">\n      <a href=\"#markdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markDiscussionCommentAsAnswer</h2>\n  <p>Mark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#markdiscussioncommentasanswerinput\">MarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the chosen comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewed\">\n      <a href=\"#markfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markFileAsViewed</h2>\n  <p>Mark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#markfileasviewedinput\">MarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreview\">\n      <a href=\"#markpullrequestreadyforreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markPullRequestReadyForReview</h2>\n  <p>Marks a pull request ready for review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#markpullrequestreadyforreviewinput\">MarkPullRequestReadyForReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is ready for review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranch\">\n      <a href=\"#mergebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergeBranch</h2>\n  <p>Merge a head into a branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#mergebranchinput\">MergeBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The resulting merge Commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequest\">\n      <a href=\"#mergepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergePullRequest</h2>\n  <p>Merge a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#mergepullrequestinput\">MergePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was merged.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecomment\">\n      <a href=\"#minimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>minimizeComment</h2>\n  <p>Minimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#minimizecommentinput\">MinimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedComment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was minimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcard\">\n      <a href=\"#moveprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectCard</h2>\n  <p>Moves a project card to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#moveprojectcardinput\">MoveProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The new edge of the moved card.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumn\">\n      <a href=\"#moveprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectColumn</h2>\n  <p>Moves a project column to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#moveprojectcolumninput\">MoveProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The new edge of the moved column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissue\">\n      <a href=\"#pinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>pinIssue</h2>\n  <p>Pin an issue to a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#pinissueinput\">PinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"regenerateverifiabledomaintoken\">\n      <a href=\"#regenerateverifiabledomaintoken\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>regenerateVerifiableDomainToken</h2>\n  <p>Regenerates a verifiable domain&apos;s verification token.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#regenerateverifiabledomaintokeninput\">RegenerateVerifiableDomainTokenInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The verification token that was generated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeployments\">\n      <a href=\"#rejectdeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rejectDeployments</h2>\n  <p>Reject all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#rejectdeploymentsinput\">RejectDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignable\">\n      <a href=\"#removeassigneesfromassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeAssigneesFromAssignable</h2>\n  <p>Removes assignees from an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#removeassigneesfromassignableinput\">RemoveAssigneesFromAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was unassigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmin\">\n      <a href=\"#removeenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseAdmin</h2>\n  <p>Removes an administrator from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#removeenterpriseadmininput\">RemoveEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was removed as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelable\">\n      <a href=\"#removelabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeLabelsFromLabelable</h2>\n  <p>Removes labels from a Labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#removelabelsfromlabelableinput\">RemoveLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The Labelable the labels were removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaborator\">\n      <a href=\"#removeoutsidecollaborator\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeOutsideCollaborator</h2>\n  <p>Removes outside collaborator from all repositories in an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#removeoutsidecollaboratorinput\">RemoveOutsideCollaboratorInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>removedUser</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was removed as an outside collaborator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereaction\">\n      <a href=\"#removereaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeReaction</h2>\n  <p>Removes a reaction from a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#removereactioninput\">RemoveReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestar\">\n      <a href=\"#removestar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeStar</h2>\n  <p>Removes a star from a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#removestarinput\">RemoveStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvote\">\n      <a href=\"#removeupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeUpvote</h2>\n  <p>Remove an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#removeupvoteinput\">RemoveUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissue\">\n      <a href=\"#reopenissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenIssue</h2>\n  <p>Reopen a issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reopenissueinput\">ReopenIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequest\">\n      <a href=\"#reopenpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenPullRequest</h2>\n  <p>Reopen a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reopenpullrequestinput\">ReopenPullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was reopened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviews\">\n      <a href=\"#requestreviews\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>requestReviews</h2>\n  <p>Set review requests on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#requestreviewsinput\">RequestReviewsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is getting requests.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewersEdge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#useredge\">UserEdge</a></code>)</p></td>\n<td><p>The edge from the pull request to the requested reviewers.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuite\">\n      <a href=\"#rerequestchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rerequestCheckSuite</h2>\n  <p>Rerequests an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#rerequestchecksuiteinput\">RerequestCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The requested check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthread\">\n      <a href=\"#resolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>resolveReviewThread</h2>\n  <p>Marks a review thread as resolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#resolvereviewthreadinput\">ResolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreview\">\n      <a href=\"#submitpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>submitPullRequestReview</h2>\n  <p>Submits a pending pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#submitpullrequestreviewinput\">SubmitPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The submitted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissue\">\n      <a href=\"#transferissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>transferIssue</h2>\n  <p>Transfer an issue to a different repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#transferissueinput\">TransferIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was transferred.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepository\">\n      <a href=\"#unarchiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unarchiveRepository</h2>\n  <p>Unarchives a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unarchiverepositoryinput\">UnarchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was unarchived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuser\">\n      <a href=\"#unfollowuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unfollowUser</h2>\n  <p>Unfollow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unfollowuserinput\">UnfollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was unfollowed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromproject\">\n      <a href=\"#unlinkrepositoryfromproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlinkRepositoryFromProject</h2>\n  <p>Deletes a repository link from a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unlinkrepositoryfromprojectinput\">UnlinkRepositoryFromProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockable\">\n      <a href=\"#unlocklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlockLockable</h2>\n  <p>Unlock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unlocklockableinput\">UnlockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unlockedRecord</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was unlocked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswer\">\n      <a href=\"#unmarkdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkDiscussionCommentAsAnswer</h2>\n  <p>Unmark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unmarkdiscussioncommentasanswerinput\">UnmarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewed\">\n      <a href=\"#unmarkfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkFileAsViewed</h2>\n  <p>Unmark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unmarkfileasviewedinput\">UnmarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicate\">\n      <a href=\"#unmarkissueasduplicate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkIssueAsDuplicate</h2>\n  <p>Unmark an issue as a duplicate of another issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unmarkissueasduplicateinput\">UnmarkIssueAsDuplicateInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request that was marked as a duplicate.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecomment\">\n      <a href=\"#unminimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unminimizeComment</h2>\n  <p>Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unminimizecommentinput\">UnminimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unminimizedComment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was unminimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissue\">\n      <a href=\"#unpinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unpinIssue</h2>\n  <p>Unpin a pinned issue from a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unpinissueinput\">UnpinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was unpinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthread\">\n      <a href=\"#unresolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unresolveReviewThread</h2>\n  <p>Marks a review thread as unresolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#unresolvereviewthreadinput\">UnresolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionrule\">\n      <a href=\"#updatebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatebranchprotectionruleinput\">UpdateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckrun\">\n      <a href=\"#updatecheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckRun</h2>\n  <p>Update a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatecheckruninput\">UpdateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The updated check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferences\">\n      <a href=\"#updatechecksuitepreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckSuitePreferences</h2>\n  <p>Modifies the settings of an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatechecksuitepreferencesinput\">UpdateCheckSuitePreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussion\">\n      <a href=\"#updatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussion</h2>\n  <p>Update a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatediscussioninput\">UpdateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The modified discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncomment\">\n      <a href=\"#updatediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussionComment</h2>\n  <p>Update the contents of a comment on a Discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatediscussioncommentinput\">UpdateDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The modified discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterpriseallowprivaterepositoryforkingsettinginput\">UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsetting\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseDefaultRepositoryPermissionSetting</h2>\n  <p>Sets the base repository permission for organizations in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisedefaultrepositorypermissionsettinginput\">UpdateEnterpriseDefaultRepositoryPermissionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</h2>\n  <p>Sets whether organization members with admin permissions on a repository can change repository visibility.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessetting\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanCreateRepositoriesSetting</h2>\n  <p>Sets the members can create repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisememberscancreaterepositoriessettinginput\">UpdateEnterpriseMembersCanCreateRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessetting\">\n      <a href=\"#updateenterprisememberscandeleteissuessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteIssuesSetting</h2>\n  <p>Sets the members can delete issues setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisememberscandeleteissuessettinginput\">UpdateEnterpriseMembersCanDeleteIssuesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessetting\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteRepositoriesSetting</h2>\n  <p>Sets the members can delete repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisememberscandeleterepositoriessettinginput\">UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssetting\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanInviteCollaboratorsSetting</h2>\n  <p>Sets whether members can invite collaborators are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisememberscaninvitecollaboratorssettinginput\">UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessetting\">\n      <a href=\"#updateenterprisememberscanmakepurchasessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanMakePurchasesSetting</h2>\n  <p>Sets whether or not an organization admin can make purchases.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisememberscanmakepurchasessettinginput\">UpdateEnterpriseMembersCanMakePurchasesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessetting\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanUpdateProtectedBranchesSetting</h2>\n  <p>Sets the members can update protected branches setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisememberscanupdateprotectedbranchessettinginput\">UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssetting\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanViewDependencyInsightsSetting</h2>\n  <p>Sets the members can view dependency insights for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisememberscanviewdependencyinsightssettinginput\">UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssetting\">\n      <a href=\"#updateenterpriseorganizationprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOrganizationProjectsSetting</h2>\n  <p>Sets whether organization projects are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterpriseorganizationprojectssettinginput\">UpdateEnterpriseOrganizationProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofile\">\n      <a href=\"#updateenterpriseprofile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseProfile</h2>\n  <p>Updates an enterprise&apos;s profile.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterpriseprofileinput\">UpdateEnterpriseProfileInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssetting\">\n      <a href=\"#updateenterpriserepositoryprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseRepositoryProjectsSetting</h2>\n  <p>Sets whether repository projects are enabled for a enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterpriserepositoryprojectssettinginput\">UpdateEnterpriseRepositoryProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssetting\">\n      <a href=\"#updateenterpriseteamdiscussionssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTeamDiscussionsSetting</h2>\n  <p>Sets whether team discussions are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterpriseteamdiscussionssettinginput\">UpdateEnterpriseTeamDiscussionsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsetting\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTwoFactorAuthenticationRequiredSetting</h2>\n  <p>Sets whether two factor authentication is required for all users in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenterprisetwofactorauthenticationrequiredsettinginput\">UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironment\">\n      <a href=\"#updateenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnvironment</h2>\n  <p>Updates an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateenvironmentinput\">UpdateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The updated environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsetting\">\n      <a href=\"#updateipallowlistenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEnabledSetting</h2>\n  <p>Sets whether an IP allow list is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateipallowlistenabledsettinginput\">UpdateIpAllowListEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentry\">\n      <a href=\"#updateipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEntry</h2>\n  <p>Updates an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateipallowlistentryinput\">UpdateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsetting\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListForInstalledAppsEnabledSetting</h2>\n  <p>Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateipallowlistforinstalledappsenabledsettinginput\">UpdateIpAllowListForInstalledAppsEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissue\">\n      <a href=\"#updateissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssue</h2>\n  <p>Updates an Issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateissueinput\">UpdateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecomment\">\n      <a href=\"#updateissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssueComment</h2>\n  <p>Updates an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateissuecommentinput\">UpdateIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabel\">\n      <a href=\"#updatelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateLabel</h2>\n  <p>Updates an existing label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateLabel</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatelabelinput\">UpdateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The updated label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatenotificationrestrictionsetting\">\n      <a href=\"#updatenotificationrestrictionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateNotificationRestrictionSetting</h2>\n  <p>Update the setting to restrict notifications to only verified or approved domains available to an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatenotificationrestrictionsettinginput\">UpdateNotificationRestrictionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner</a></code>)</p></td>\n<td><p>The owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateproject\">\n      <a href=\"#updateproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProject</h2>\n  <p>Updates an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateprojectinput\">UpdateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The updated project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcard\">\n      <a href=\"#updateprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectCard</h2>\n  <p>Updates an existing project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateprojectcardinput\">UpdateProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumn\">\n      <a href=\"#updateprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectColumn</h2>\n  <p>Updates an existing project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateprojectcolumninput\">UpdateProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The updated project column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequest\">\n      <a href=\"#updatepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequest</h2>\n  <p>Update a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatepullrequestinput\">UpdatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreview\">\n      <a href=\"#updatepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReview</h2>\n  <p>Updates the body of a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatepullrequestreviewinput\">UpdatePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The updated pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcomment\">\n      <a href=\"#updatepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReviewComment</h2>\n  <p>Updates a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatepullrequestreviewcommentinput\">UpdatePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewComment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateref\">\n      <a href=\"#updateref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRef</h2>\n  <p>Update a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updaterefinput\">UpdateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The updated Ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefs\">\n      <a href=\"#updaterefs\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRefs</h2>\n  <p>Creates, updates and/or deletes multiple refs in a repository.</p>\n<p>This mutation takes a list of <code>RefUpdate</code>s 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.</p>\n<p><code>RefUpdate.beforeOid</code> specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to verify that\nthe references should not exist.</p>\n<p><code>RefUpdate.afterOid</code> specifies the value that the given reference\nwill point to after performing all updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to delete a\nreference.</p>\n<p>If <code>RefUpdate.force</code> is set to <code>true</code>, a non-fast-forward updates\nfor the given reference will be allowed.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateRefs</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updaterefsinput\">UpdateRefsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepository\">\n      <a href=\"#updaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRepository</h2>\n  <p>Update information about a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updaterepositoryinput\">UpdateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscription\">\n      <a href=\"#updatesubscription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSubscription</h2>\n  <p>Updates the state for subscribable subjects.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatesubscriptioninput\">UpdateSubscriptionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable</a></code>)</p></td>\n<td><p>The input subscribable entity.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussion\">\n      <a href=\"#updateteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussion</h2>\n  <p>Updates a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateteamdiscussioninput\">UpdateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The updated discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncomment\">\n      <a href=\"#updateteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussionComment</h2>\n  <p>Updates a discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateteamdiscussioncommentinput\">UpdateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignment\">\n      <a href=\"#updateteamreviewassignment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamReviewAssignment</h2>\n  <p>Updates team review assignment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateTeamReviewAssignment</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updateteamreviewassignmentinput\">UpdateTeamReviewAssignmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team that was modified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopics\">\n      <a href=\"#updatetopics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTopics</h2>\n  <p>Replaces the repository&apos;s topics with the given topics.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#updatetopicsinput\">UpdateTopicsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invalidTopicNames</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Names of the provided topics that are not valid.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifyverifiabledomain\">\n      <a href=\"#verifyverifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>verifyVerifiableDomain</h2>\n  <p>Verify that a verifiable domain has the expected DNS record.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#verifyverifiabledomaininput\">VerifyVerifiableDomainInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The verifiable domain that was verified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcomment\">\n      addComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcomment\">\n      addComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcard\">\n      addProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcard\">\n      addProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreaction\">\n      addReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreaction\">\n      addReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstar\">\n      addStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstar\">\n      addStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvote\">\n      addUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvote\">\n      addUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addverifiabledomain\">\n      addVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeployments\">\n      approveDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeployments\">\n      approveDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approveverifiabledomain\">\n      approveVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepository\">\n      archiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepository\">\n      archiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneproject\">\n      cloneProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneproject\">\n      cloneProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissue\">\n      closeIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissue\">\n      closeIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequest\">\n      closePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequest\">\n      closePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckrun\">\n      createCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckrun\">\n      createCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcontentattachment\">\n      createContentAttachment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcontentattachment\">\n      createContentAttachment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeployment\">\n      createDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeployment\">\n      createDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussion\">\n      createDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussion\">\n      createDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironment\">\n      createEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironment\">\n      createEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissue\">\n      createIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissue\">\n      createIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabel\">\n      createLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabel\">\n      createLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createproject\">\n      createProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createproject\">\n      createProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequest\">\n      createPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequest\">\n      createPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createref\">\n      createRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createref\">\n      createRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepository\">\n      createRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepository\">\n      createRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissue\">\n      deleteIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissue\">\n      deleteIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabel\">\n      deleteLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabel\">\n      deleteLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteproject\">\n      deleteProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteproject\">\n      deleteProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteref\">\n      deleteRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteref\">\n      deleteRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteverifiabledomain\">\n      deleteVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuser\">\n      followUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuser\">\n      followUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importproject\">\n      importProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importproject\">\n      importProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockable\">\n      lockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockable\">\n      lockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranch\">\n      mergeBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranch\">\n      mergeBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecomment\">\n      minimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecomment\">\n      minimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissue\">\n      pinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissue\">\n      pinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#regenerateverifiabledomaintoken\">\n      regenerateVerifiableDomainToken</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereaction\">\n      removeReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereaction\">\n      removeReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestar\">\n      removeStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestar\">\n      removeStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvote\">\n      removeUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvote\">\n      removeUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissue\">\n      reopenIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissue\">\n      reopenIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviews\">\n      requestReviews</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviews\">\n      requestReviews</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissue\">\n      transferIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissue\">\n      transferIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuser\">\n      unfollowUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuser\">\n      unfollowUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockable\">\n      unlockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockable\">\n      unlockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissue\">\n      unpinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissue\">\n      unpinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissue\">\n      updateIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissue\">\n      updateIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabel\">\n      updateLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabel\">\n      updateLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatenotificationrestrictionsetting\">\n      updateNotificationRestrictionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateproject\">\n      updateProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateproject\">\n      updateProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateref\">\n      updateRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateref\">\n      updateRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefs\">\n      updateRefs</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefs\">\n      updateRefs</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepository\">\n      updateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepository\">\n      updateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscription\">\n      updateSubscription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscription\">\n      updateSubscription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopics\">\n      updateTopics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopics\">\n      updateTopics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifyverifiabledomain\">\n      verifyVerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -5649,868 +5649,868 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignable\">\n      <a href=\"#addassigneestoassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addAssigneesToAssignable</h2>\n  <p>Adds assignees to an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addassigneestoassignableinput\">AddAssigneesToAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was assigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcomment\">\n      <a href=\"#addcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addComment</h2>\n  <p>Adds a comment to an Issue or Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addcommentinput\">AddCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuecommentedge\">IssueCommentEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>)</p></td>\n<td><p>The subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineEdge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuetimelineitemedge\">IssueTimelineItemEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s timeline connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmin\">\n      <a href=\"#addenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addEnterpriseAdmin</h2>\n  <p>Adds an administrator to the global enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addenterpriseadmininput\">AddEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was added as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelable\">\n      <a href=\"#addlabelstolabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addLabelsToLabelable</h2>\n  <p>Adds labels to a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addlabelstolabelableinput\">AddLabelsToLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was labeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcard\">\n      <a href=\"#addprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectCard</h2>\n  <p>Adds a card to a ProjectColumn. Either <code>contentId</code> or <code>note</code> must be provided but <strong>not</strong> both.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addprojectcardinput\">AddProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The edge from the ProjectColumn&apos;s card connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The ProjectColumn.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumn\">\n      <a href=\"#addprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectColumn</h2>\n  <p>Adds a column to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addprojectcolumninput\">AddProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The edge from the project&apos;s column connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreview\">\n      <a href=\"#addpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReview</h2>\n  <p>Adds a review to a Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addpullrequestreviewinput\">AddPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The newly created pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewEdge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewedge\">PullRequestReviewEdge</a></code>)</p></td>\n<td><p>The edge from the pull request&apos;s review connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcomment\">\n      <a href=\"#addpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewComment</h2>\n  <p>Adds a comment to a review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addpullrequestreviewcommentinput\">AddPullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The newly created comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcommentedge\">PullRequestReviewCommentEdge</a></code>)</p></td>\n<td><p>The edge from the review&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthread\">\n      <a href=\"#addpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewThread</h2>\n  <p>Adds a new thread to a pending Pull Request Review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addpullrequestreviewthreadinput\">AddPullRequestReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The newly created thread.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreaction\">\n      <a href=\"#addreaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addReaction</h2>\n  <p>Adds a reaction to a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addreactioninput\">AddReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstar\">\n      <a href=\"#addstar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addStar</h2>\n  <p>Adds a star to a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#addstarinput\">AddStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepository\">\n      <a href=\"#archiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>archiveRepository</h2>\n  <p>Marks a repository as archived.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#archiverepositoryinput\">ArchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was marked as archived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatus\">\n      <a href=\"#changeuserstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>changeUserStatus</h2>\n  <p>Update your status on GitHub.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#changeuserstatusinput\">ChangeUserStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>Your updated status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelable\">\n      <a href=\"#clearlabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>clearLabelsFromLabelable</h2>\n  <p>Clears all labels from a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#clearlabelsfromlabelableinput\">ClearLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was unlabeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneproject\">\n      <a href=\"#cloneproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneProject</h2>\n  <p>Creates a new project by cloning configuration from an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#cloneprojectinput\">CloneProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>jobStatusId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The id of the JobStatus for populating cloned fields.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new cloned project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepository\">\n      <a href=\"#clonetemplaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneTemplateRepository</h2>\n  <p>Create a new repository with the same files and directory structure as a template repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#clonetemplaterepositoryinput\">CloneTemplateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissue\">\n      <a href=\"#closeissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closeIssue</h2>\n  <p>Close an issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#closeissueinput\">CloseIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequest\">\n      <a href=\"#closepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closePullRequest</h2>\n  <p>Close a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#closepullrequestinput\">ClosePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissue\">\n      <a href=\"#convertprojectcardnotetoissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertProjectCardNoteToIssue</h2>\n  <p>Convert a project note card to one associated with a newly created issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#convertprojectcardnotetoissueinput\">ConvertProjectCardNoteToIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionrule\">\n      <a href=\"#createbranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createbranchprotectionruleinput\">CreateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckrun\">\n      <a href=\"#createcheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckRun</h2>\n  <p>Create a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createcheckruninput\">CreateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The newly created check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuite\">\n      <a href=\"#createchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckSuite</h2>\n  <p>Create a check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createchecksuiteinput\">CreateCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The newly created check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcontentattachment\">\n      <a href=\"#createcontentattachment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createContentAttachment</h2>\n  <p>Create a content attachment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createContentAttachment</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#create-content-attachments-preview\">Create content attachments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createcontentattachmentinput\">CreateContentAttachmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentAttachment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#contentattachment\">ContentAttachment</a></code>)</p></td>\n<td><p>The newly created content attachment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeployment\">\n      <a href=\"#createdeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeployment</h2>\n  <p>Creates a new deployment event.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeployment</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createdeploymentinput\">CreateDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerged</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>True if the default branch has been auto-merged into the deployment ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The new deployment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatus\">\n      <a href=\"#createdeploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeploymentStatus</h2>\n  <p>Create a deployment status.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeploymentStatus</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createdeploymentstatusinput\">CreateDeploymentStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The new deployment status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganization\">\n      <a href=\"#createenterpriseorganization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnterpriseOrganization</h2>\n  <p>Creates an organization as part of an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createenterpriseorganizationinput\">CreateEnterpriseOrganizationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise that owns the created organization.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentry\">\n      <a href=\"#createipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIpAllowListEntry</h2>\n  <p>Creates a new IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createipallowlistentryinput\">CreateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissue\">\n      <a href=\"#createissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIssue</h2>\n  <p>Creates a new issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createissueinput\">CreateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The new issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabel\">\n      <a href=\"#createlabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createLabel</h2>\n  <p>Creates a new label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createLabel</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createlabelinput\">CreateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The new label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createproject\">\n      <a href=\"#createproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createProject</h2>\n  <p>Creates a new project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createprojectinput\">CreateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequest\">\n      <a href=\"#createpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createPullRequest</h2>\n  <p>Create a new pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createpullrequestinput\">CreatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The new pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createref\">\n      <a href=\"#createref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRef</h2>\n  <p>Create a new Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createrefinput\">CreateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The newly created ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepository\">\n      <a href=\"#createrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRepository</h2>\n  <p>Create a new repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createrepositoryinput\">CreateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussion\">\n      <a href=\"#createteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussion</h2>\n  <p>Creates a new team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createteamdiscussioninput\">CreateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The new discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncomment\">\n      <a href=\"#createteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussionComment</h2>\n  <p>Creates a new team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#createteamdiscussioncommentinput\">CreateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The new comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionrule\">\n      <a href=\"#deletebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteBranchProtectionRule</h2>\n  <p>Delete a branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deletebranchprotectionruleinput\">DeleteBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeployment\">\n      <a href=\"#deletedeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDeployment</h2>\n  <p>Deletes a deployment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deletedeploymentinput\">DeleteDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentry\">\n      <a href=\"#deleteipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIpAllowListEntry</h2>\n  <p>Deletes an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deleteipallowlistentryinput\">DeleteIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissue\">\n      <a href=\"#deleteissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssue</h2>\n  <p>Deletes an Issue object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deleteissueinput\">DeleteIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository the issue belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecomment\">\n      <a href=\"#deleteissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssueComment</h2>\n  <p>Deletes an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deleteissuecommentinput\">DeleteIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabel\">\n      <a href=\"#deletelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteLabel</h2>\n  <p>Deletes a label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deleteLabel</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deletelabelinput\">DeleteLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversion\">\n      <a href=\"#deletepackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePackageVersion</h2>\n  <p>Delete a package version.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deletePackageVersion</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#access-to-package-version-deletion-preview\">Access to package version deletion preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deletepackageversioninput\">DeletePackageVersionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the operation succeeded.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteproject\">\n      <a href=\"#deleteproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProject</h2>\n  <p>Deletes a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deleteprojectinput\">DeleteProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>)</p></td>\n<td><p>The repository or organization the project was removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcard\">\n      <a href=\"#deleteprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectCard</h2>\n  <p>Deletes a project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deleteprojectcardinput\">DeleteProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The column the deleted card was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCardId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted card ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumn\">\n      <a href=\"#deleteprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectColumn</h2>\n  <p>Deletes a project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deleteprojectcolumninput\">DeleteProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedColumnId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted column ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project the deleted column was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreview\">\n      <a href=\"#deletepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReview</h2>\n  <p>Deletes a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deletepullrequestreviewinput\">DeletePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The deleted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcomment\">\n      <a href=\"#deletepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReviewComment</h2>\n  <p>Deletes a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deletepullrequestreviewcommentinput\">DeletePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review the deleted comment belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteref\">\n      <a href=\"#deleteref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteRef</h2>\n  <p>Delete a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deleterefinput\">DeleteRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussion\">\n      <a href=\"#deleteteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussion</h2>\n  <p>Deletes a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deleteteamdiscussioninput\">DeleteTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncomment\">\n      <a href=\"#deleteteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussionComment</h2>\n  <p>Deletes a team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deleteteamdiscussioncommentinput\">DeleteTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomerge\">\n      <a href=\"#disablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>disablePullRequestAutoMerge</h2>\n  <p>Disable auto merge on the given pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#disablepullrequestautomergeinput\">DisablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto merge was disabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreview\">\n      <a href=\"#dismisspullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissPullRequestReview</h2>\n  <p>Dismisses an approved or rejected pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#dismisspullrequestreviewinput\">DismissPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The dismissed pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomerge\">\n      <a href=\"#enablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>enablePullRequestAutoMerge</h2>\n  <p>Enable the default auto-merge on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#enablepullrequestautomergeinput\">EnablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto-merge was enabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuser\">\n      <a href=\"#followuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>followUser</h2>\n  <p>Follow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#followuserinput\">FollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was followed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importproject\">\n      <a href=\"#importproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>importProject</h2>\n  <p>Creates a new project by importing columns and a list of issues/PRs.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>importProject</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#import-project-preview\">Import project preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#importprojectinput\">ImportProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new Project!.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoproject\">\n      <a href=\"#linkrepositorytoproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>linkRepositoryToProject</h2>\n  <p>Creates a repository link for a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#linkrepositorytoprojectinput\">LinkRepositoryToProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockable\">\n      <a href=\"#locklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>lockLockable</h2>\n  <p>Lock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#locklockableinput\">LockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockedRecord</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was locked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewed\">\n      <a href=\"#markfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markFileAsViewed</h2>\n  <p>Mark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#markfileasviewedinput\">MarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreview\">\n      <a href=\"#markpullrequestreadyforreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markPullRequestReadyForReview</h2>\n  <p>Marks a pull request ready for review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#markpullrequestreadyforreviewinput\">MarkPullRequestReadyForReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is ready for review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranch\">\n      <a href=\"#mergebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergeBranch</h2>\n  <p>Merge a head into a branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#mergebranchinput\">MergeBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The resulting merge Commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequest\">\n      <a href=\"#mergepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergePullRequest</h2>\n  <p>Merge a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#mergepullrequestinput\">MergePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was merged.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecomment\">\n      <a href=\"#minimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>minimizeComment</h2>\n  <p>Minimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#minimizecommentinput\">MinimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedComment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was minimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcard\">\n      <a href=\"#moveprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectCard</h2>\n  <p>Moves a project card to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#moveprojectcardinput\">MoveProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The new edge of the moved card.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumn\">\n      <a href=\"#moveprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectColumn</h2>\n  <p>Moves a project column to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#moveprojectcolumninput\">MoveProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The new edge of the moved column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissue\">\n      <a href=\"#pinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>pinIssue</h2>\n  <p>Pin an issue to a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#pinissueinput\">PinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignable\">\n      <a href=\"#removeassigneesfromassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeAssigneesFromAssignable</h2>\n  <p>Removes assignees from an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#removeassigneesfromassignableinput\">RemoveAssigneesFromAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was unassigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmin\">\n      <a href=\"#removeenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseAdmin</h2>\n  <p>Removes an administrator from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#removeenterpriseadmininput\">RemoveEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was removed as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelable\">\n      <a href=\"#removelabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeLabelsFromLabelable</h2>\n  <p>Removes labels from a Labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#removelabelsfromlabelableinput\">RemoveLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The Labelable the labels were removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaborator\">\n      <a href=\"#removeoutsidecollaborator\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeOutsideCollaborator</h2>\n  <p>Removes outside collaborator from all repositories in an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#removeoutsidecollaboratorinput\">RemoveOutsideCollaboratorInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>removedUser</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was removed as an outside collaborator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereaction\">\n      <a href=\"#removereaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeReaction</h2>\n  <p>Removes a reaction from a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#removereactioninput\">RemoveReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestar\">\n      <a href=\"#removestar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeStar</h2>\n  <p>Removes a star from a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#removestarinput\">RemoveStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissue\">\n      <a href=\"#reopenissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenIssue</h2>\n  <p>Reopen a issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reopenissueinput\">ReopenIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequest\">\n      <a href=\"#reopenpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenPullRequest</h2>\n  <p>Reopen a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reopenpullrequestinput\">ReopenPullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was reopened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviews\">\n      <a href=\"#requestreviews\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>requestReviews</h2>\n  <p>Set review requests on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#requestreviewsinput\">RequestReviewsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is getting requests.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewersEdge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#useredge\">UserEdge</a></code>)</p></td>\n<td><p>The edge from the pull request to the requested reviewers.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuite\">\n      <a href=\"#rerequestchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rerequestCheckSuite</h2>\n  <p>Rerequests an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#rerequestchecksuiteinput\">RerequestCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The requested check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthread\">\n      <a href=\"#resolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>resolveReviewThread</h2>\n  <p>Marks a review thread as resolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#resolvereviewthreadinput\">ResolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreview\">\n      <a href=\"#submitpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>submitPullRequestReview</h2>\n  <p>Submits a pending pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#submitpullrequestreviewinput\">SubmitPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The submitted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissue\">\n      <a href=\"#transferissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>transferIssue</h2>\n  <p>Transfer an issue to a different repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#transferissueinput\">TransferIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was transferred.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepository\">\n      <a href=\"#unarchiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unarchiveRepository</h2>\n  <p>Unarchives a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#unarchiverepositoryinput\">UnarchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was unarchived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuser\">\n      <a href=\"#unfollowuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unfollowUser</h2>\n  <p>Unfollow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#unfollowuserinput\">UnfollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was unfollowed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromproject\">\n      <a href=\"#unlinkrepositoryfromproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlinkRepositoryFromProject</h2>\n  <p>Deletes a repository link from a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#unlinkrepositoryfromprojectinput\">UnlinkRepositoryFromProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockable\">\n      <a href=\"#unlocklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlockLockable</h2>\n  <p>Unlock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#unlocklockableinput\">UnlockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unlockedRecord</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was unlocked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewed\">\n      <a href=\"#unmarkfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkFileAsViewed</h2>\n  <p>Unmark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#unmarkfileasviewedinput\">UnmarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicate\">\n      <a href=\"#unmarkissueasduplicate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkIssueAsDuplicate</h2>\n  <p>Unmark an issue as a duplicate of another issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#unmarkissueasduplicateinput\">UnmarkIssueAsDuplicateInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request that was marked as a duplicate.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecomment\">\n      <a href=\"#unminimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unminimizeComment</h2>\n  <p>Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#unminimizecommentinput\">UnminimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unminimizedComment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was unminimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissue\">\n      <a href=\"#unpinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unpinIssue</h2>\n  <p>Unpin a pinned issue from a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#unpinissueinput\">UnpinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was unpinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthread\">\n      <a href=\"#unresolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unresolveReviewThread</h2>\n  <p>Marks a review thread as unresolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#unresolvereviewthreadinput\">UnresolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionrule\">\n      <a href=\"#updatebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updatebranchprotectionruleinput\">UpdateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckrun\">\n      <a href=\"#updatecheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckRun</h2>\n  <p>Update a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updatecheckruninput\">UpdateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The updated check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferences\">\n      <a href=\"#updatechecksuitepreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckSuitePreferences</h2>\n  <p>Modifies the settings of an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updatechecksuitepreferencesinput\">UpdateCheckSuitePreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterpriseallowprivaterepositoryforkingsettinginput\">UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsetting\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseDefaultRepositoryPermissionSetting</h2>\n  <p>Sets the default repository permission for organizations in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisedefaultrepositorypermissionsettinginput\">UpdateEnterpriseDefaultRepositoryPermissionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated default repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the default repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</h2>\n  <p>Sets whether organization members with admin permissions on a repository can change repository visibility.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessetting\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanCreateRepositoriesSetting</h2>\n  <p>Sets the members can create repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisememberscancreaterepositoriessettinginput\">UpdateEnterpriseMembersCanCreateRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessetting\">\n      <a href=\"#updateenterprisememberscandeleteissuessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteIssuesSetting</h2>\n  <p>Sets the members can delete issues setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisememberscandeleteissuessettinginput\">UpdateEnterpriseMembersCanDeleteIssuesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessetting\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteRepositoriesSetting</h2>\n  <p>Sets the members can delete repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisememberscandeleterepositoriessettinginput\">UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssetting\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanInviteCollaboratorsSetting</h2>\n  <p>Sets whether members can invite collaborators are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisememberscaninvitecollaboratorssettinginput\">UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessetting\">\n      <a href=\"#updateenterprisememberscanmakepurchasessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanMakePurchasesSetting</h2>\n  <p>Sets whether or not an organization admin can make purchases.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisememberscanmakepurchasessettinginput\">UpdateEnterpriseMembersCanMakePurchasesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessetting\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanUpdateProtectedBranchesSetting</h2>\n  <p>Sets the members can update protected branches setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisememberscanupdateprotectedbranchessettinginput\">UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssetting\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanViewDependencyInsightsSetting</h2>\n  <p>Sets the members can view dependency insights for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisememberscanviewdependencyinsightssettinginput\">UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssetting\">\n      <a href=\"#updateenterpriseorganizationprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOrganizationProjectsSetting</h2>\n  <p>Sets whether organization projects are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterpriseorganizationprojectssettinginput\">UpdateEnterpriseOrganizationProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofile\">\n      <a href=\"#updateenterpriseprofile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseProfile</h2>\n  <p>Updates an enterprise&apos;s profile.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterpriseprofileinput\">UpdateEnterpriseProfileInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssetting\">\n      <a href=\"#updateenterpriserepositoryprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseRepositoryProjectsSetting</h2>\n  <p>Sets whether repository projects are enabled for a enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterpriserepositoryprojectssettinginput\">UpdateEnterpriseRepositoryProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssetting\">\n      <a href=\"#updateenterpriseteamdiscussionssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTeamDiscussionsSetting</h2>\n  <p>Sets whether team discussions are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterpriseteamdiscussionssettinginput\">UpdateEnterpriseTeamDiscussionsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsetting\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTwoFactorAuthenticationRequiredSetting</h2>\n  <p>Sets whether two factor authentication is required for all users in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateenterprisetwofactorauthenticationrequiredsettinginput\">UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsetting\">\n      <a href=\"#updateipallowlistenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEnabledSetting</h2>\n  <p>Sets whether an IP allow list is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateipallowlistenabledsettinginput\">UpdateIpAllowListEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentry\">\n      <a href=\"#updateipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEntry</h2>\n  <p>Updates an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateipallowlistentryinput\">UpdateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissue\">\n      <a href=\"#updateissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssue</h2>\n  <p>Updates an Issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateissueinput\">UpdateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecomment\">\n      <a href=\"#updateissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssueComment</h2>\n  <p>Updates an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateissuecommentinput\">UpdateIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabel\">\n      <a href=\"#updatelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateLabel</h2>\n  <p>Updates an existing label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateLabel</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updatelabelinput\">UpdateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The updated label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateproject\">\n      <a href=\"#updateproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProject</h2>\n  <p>Updates an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateprojectinput\">UpdateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The updated project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcard\">\n      <a href=\"#updateprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectCard</h2>\n  <p>Updates an existing project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateprojectcardinput\">UpdateProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumn\">\n      <a href=\"#updateprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectColumn</h2>\n  <p>Updates an existing project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateprojectcolumninput\">UpdateProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The updated project column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequest\">\n      <a href=\"#updatepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequest</h2>\n  <p>Update a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updatepullrequestinput\">UpdatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreview\">\n      <a href=\"#updatepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReview</h2>\n  <p>Updates the body of a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updatepullrequestreviewinput\">UpdatePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The updated pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcomment\">\n      <a href=\"#updatepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReviewComment</h2>\n  <p>Updates a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updatepullrequestreviewcommentinput\">UpdatePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewComment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateref\">\n      <a href=\"#updateref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRef</h2>\n  <p>Update a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updaterefinput\">UpdateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The updated Ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefs\">\n      <a href=\"#updaterefs\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRefs</h2>\n  <p>Creates, updates and/or deletes multiple refs in a repository.</p>\n<p>This mutation takes a list of <code>RefUpdate</code>s 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.</p>\n<p><code>RefUpdate.beforeOid</code> specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to verify that\nthe references should not exist.</p>\n<p><code>RefUpdate.afterOid</code> specifies the value that the given reference\nwill point to after performing all updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to delete a\nreference.</p>\n<p>If <code>RefUpdate.force</code> is set to <code>true</code>, a non-fast-forward updates\nfor the given reference will be allowed.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateRefs</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updaterefsinput\">UpdateRefsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepository\">\n      <a href=\"#updaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRepository</h2>\n  <p>Update information about a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updaterepositoryinput\">UpdateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscription\">\n      <a href=\"#updatesubscription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSubscription</h2>\n  <p>Updates the state for subscribable subjects.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updatesubscriptioninput\">UpdateSubscriptionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#subscribable\">Subscribable</a></code>)</p></td>\n<td><p>The input subscribable entity.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussion\">\n      <a href=\"#updateteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussion</h2>\n  <p>Updates a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateteamdiscussioninput\">UpdateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The updated discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncomment\">\n      <a href=\"#updateteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussionComment</h2>\n  <p>Updates a discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateteamdiscussioncommentinput\">UpdateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignment\">\n      <a href=\"#updateteamreviewassignment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamReviewAssignment</h2>\n  <p>Updates team review assignment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateTeamReviewAssignment</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updateteamreviewassignmentinput\">UpdateTeamReviewAssignmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team that was modified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopics\">\n      <a href=\"#updatetopics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTopics</h2>\n  <p>Replaces the repository&apos;s topics with the given topics.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#updatetopicsinput\">UpdateTopicsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invalidTopicNames</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Names of the provided topics that are not valid.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcomment\">\n      addComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcomment\">\n      addComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcard\">\n      addProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcard\">\n      addProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreaction\">\n      addReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreaction\">\n      addReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstar\">\n      addStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstar\">\n      addStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepository\">\n      archiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepository\">\n      archiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneproject\">\n      cloneProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneproject\">\n      cloneProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissue\">\n      closeIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissue\">\n      closeIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequest\">\n      closePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequest\">\n      closePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckrun\">\n      createCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckrun\">\n      createCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcontentattachment\">\n      createContentAttachment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcontentattachment\">\n      createContentAttachment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeployment\">\n      createDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeployment\">\n      createDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissue\">\n      createIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissue\">\n      createIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabel\">\n      createLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabel\">\n      createLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createproject\">\n      createProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createproject\">\n      createProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequest\">\n      createPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequest\">\n      createPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createref\">\n      createRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createref\">\n      createRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepository\">\n      createRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepository\">\n      createRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissue\">\n      deleteIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissue\">\n      deleteIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabel\">\n      deleteLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabel\">\n      deleteLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteproject\">\n      deleteProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteproject\">\n      deleteProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteref\">\n      deleteRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteref\">\n      deleteRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuser\">\n      followUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuser\">\n      followUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importproject\">\n      importProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importproject\">\n      importProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockable\">\n      lockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockable\">\n      lockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranch\">\n      mergeBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranch\">\n      mergeBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecomment\">\n      minimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecomment\">\n      minimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissue\">\n      pinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissue\">\n      pinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereaction\">\n      removeReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereaction\">\n      removeReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestar\">\n      removeStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestar\">\n      removeStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissue\">\n      reopenIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissue\">\n      reopenIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviews\">\n      requestReviews</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviews\">\n      requestReviews</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissue\">\n      transferIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissue\">\n      transferIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuser\">\n      unfollowUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuser\">\n      unfollowUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockable\">\n      unlockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockable\">\n      unlockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissue\">\n      unpinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissue\">\n      unpinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissue\">\n      updateIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissue\">\n      updateIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabel\">\n      updateLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabel\">\n      updateLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateproject\">\n      updateProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateproject\">\n      updateProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateref\">\n      updateRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateref\">\n      updateRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefs\">\n      updateRefs</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefs\">\n      updateRefs</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepository\">\n      updateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepository\">\n      updateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscription\">\n      updateSubscription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscription\">\n      updateSubscription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopics\">\n      updateTopics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopics\">\n      updateTopics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -6522,847 +6522,847 @@
     "html": "<div>\n  <div>\n    <h2 id=\"addassigneestoassignable\">\n      <a href=\"#addassigneestoassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addAssigneesToAssignable</h2>\n  <p>Adds assignees to an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addassigneestoassignableinput\">AddAssigneesToAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was assigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcomment\">\n      <a href=\"#addcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addComment</h2>\n  <p>Adds a comment to an Issue or Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addcommentinput\">AddCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuecommentedge\">IssueCommentEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>)</p></td>\n<td><p>The subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineEdge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuetimelineitemedge\">IssueTimelineItemEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s timeline connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmin\">\n      <a href=\"#addenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addEnterpriseAdmin</h2>\n  <p>Adds an administrator to the global enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addenterpriseadmininput\">AddEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was added as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelable\">\n      <a href=\"#addlabelstolabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addLabelsToLabelable</h2>\n  <p>Adds labels to a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addlabelstolabelableinput\">AddLabelsToLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was labeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcard\">\n      <a href=\"#addprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectCard</h2>\n  <p>Adds a card to a ProjectColumn. Either <code>contentId</code> or <code>note</code> must be provided but <strong>not</strong> both.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addprojectcardinput\">AddProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The edge from the ProjectColumn&apos;s card connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The ProjectColumn.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumn\">\n      <a href=\"#addprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectColumn</h2>\n  <p>Adds a column to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addprojectcolumninput\">AddProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The edge from the project&apos;s column connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreview\">\n      <a href=\"#addpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReview</h2>\n  <p>Adds a review to a Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addpullrequestreviewinput\">AddPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The newly created pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewEdge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewedge\">PullRequestReviewEdge</a></code>)</p></td>\n<td><p>The edge from the pull request&apos;s review connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcomment\">\n      <a href=\"#addpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewComment</h2>\n  <p>Adds a comment to a review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addpullrequestreviewcommentinput\">AddPullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The newly created comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcommentedge\">PullRequestReviewCommentEdge</a></code>)</p></td>\n<td><p>The edge from the review&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthread\">\n      <a href=\"#addpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewThread</h2>\n  <p>Adds a new thread to a pending Pull Request Review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addpullrequestreviewthreadinput\">AddPullRequestReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The newly created thread.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreaction\">\n      <a href=\"#addreaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addReaction</h2>\n  <p>Adds a reaction to a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addreactioninput\">AddReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstar\">\n      <a href=\"#addstar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addStar</h2>\n  <p>Adds a star to a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#addstarinput\">AddStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepository\">\n      <a href=\"#archiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>archiveRepository</h2>\n  <p>Marks a repository as archived.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#archiverepositoryinput\">ArchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was marked as archived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatus\">\n      <a href=\"#changeuserstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>changeUserStatus</h2>\n  <p>Update your status on GitHub.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#changeuserstatusinput\">ChangeUserStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>Your updated status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelable\">\n      <a href=\"#clearlabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>clearLabelsFromLabelable</h2>\n  <p>Clears all labels from a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#clearlabelsfromlabelableinput\">ClearLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was unlabeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneproject\">\n      <a href=\"#cloneproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneProject</h2>\n  <p>Creates a new project by cloning configuration from an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#cloneprojectinput\">CloneProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>jobStatusId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The id of the JobStatus for populating cloned fields.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new cloned project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepository\">\n      <a href=\"#clonetemplaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneTemplateRepository</h2>\n  <p>Create a new repository with the same files and directory structure as a template repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#clonetemplaterepositoryinput\">CloneTemplateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissue\">\n      <a href=\"#closeissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closeIssue</h2>\n  <p>Close an issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#closeissueinput\">CloseIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequest\">\n      <a href=\"#closepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closePullRequest</h2>\n  <p>Close a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#closepullrequestinput\">ClosePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissue\">\n      <a href=\"#convertprojectcardnotetoissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertProjectCardNoteToIssue</h2>\n  <p>Convert a project note card to one associated with a newly created issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#convertprojectcardnotetoissueinput\">ConvertProjectCardNoteToIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionrule\">\n      <a href=\"#createbranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createbranchprotectionruleinput\">CreateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckrun\">\n      <a href=\"#createcheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckRun</h2>\n  <p>Create a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createcheckruninput\">CreateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The newly created check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuite\">\n      <a href=\"#createchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckSuite</h2>\n  <p>Create a check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createchecksuiteinput\">CreateCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The newly created check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcontentattachment\">\n      <a href=\"#createcontentattachment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createContentAttachment</h2>\n  <p>Create a content attachment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createContentAttachment</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#create-content-attachments-preview\">Create content attachments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createcontentattachmentinput\">CreateContentAttachmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentAttachment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#contentattachment\">ContentAttachment</a></code>)</p></td>\n<td><p>The newly created content attachment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeployment\">\n      <a href=\"#createdeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeployment</h2>\n  <p>Creates a new deployment event.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeployment</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createdeploymentinput\">CreateDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerged</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>True if the default branch has been auto-merged into the deployment ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The new deployment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatus\">\n      <a href=\"#createdeploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeploymentStatus</h2>\n  <p>Create a deployment status.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeploymentStatus</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createdeploymentstatusinput\">CreateDeploymentStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The new deployment status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentry\">\n      <a href=\"#createipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIpAllowListEntry</h2>\n  <p>Creates a new IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createipallowlistentryinput\">CreateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissue\">\n      <a href=\"#createissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIssue</h2>\n  <p>Creates a new issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createissueinput\">CreateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The new issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabel\">\n      <a href=\"#createlabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createLabel</h2>\n  <p>Creates a new label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createLabel</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createlabelinput\">CreateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The new label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createproject\">\n      <a href=\"#createproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createProject</h2>\n  <p>Creates a new project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createprojectinput\">CreateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequest\">\n      <a href=\"#createpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createPullRequest</h2>\n  <p>Create a new pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createpullrequestinput\">CreatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The new pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createref\">\n      <a href=\"#createref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRef</h2>\n  <p>Create a new Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createrefinput\">CreateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The newly created ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepository\">\n      <a href=\"#createrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRepository</h2>\n  <p>Create a new repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createrepositoryinput\">CreateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussion\">\n      <a href=\"#createteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussion</h2>\n  <p>Creates a new team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createteamdiscussioninput\">CreateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The new discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncomment\">\n      <a href=\"#createteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussionComment</h2>\n  <p>Creates a new team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#createteamdiscussioncommentinput\">CreateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The new comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionrule\">\n      <a href=\"#deletebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteBranchProtectionRule</h2>\n  <p>Delete a branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deletebranchprotectionruleinput\">DeleteBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeployment\">\n      <a href=\"#deletedeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDeployment</h2>\n  <p>Deletes a deployment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deletedeploymentinput\">DeleteDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentry\">\n      <a href=\"#deleteipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIpAllowListEntry</h2>\n  <p>Deletes an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deleteipallowlistentryinput\">DeleteIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissue\">\n      <a href=\"#deleteissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssue</h2>\n  <p>Deletes an Issue object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deleteissueinput\">DeleteIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository the issue belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecomment\">\n      <a href=\"#deleteissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssueComment</h2>\n  <p>Deletes an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deleteissuecommentinput\">DeleteIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabel\">\n      <a href=\"#deletelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteLabel</h2>\n  <p>Deletes a label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deleteLabel</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deletelabelinput\">DeleteLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepackageversion\">\n      <a href=\"#deletepackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePackageVersion</h2>\n  <p>Delete a package version.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deletePackageVersion</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#access-to-package-version-deletion-preview\">Access to package version deletion preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deletepackageversioninput\">DeletePackageVersionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether or not the operation succeeded.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteproject\">\n      <a href=\"#deleteproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProject</h2>\n  <p>Deletes a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deleteprojectinput\">DeleteProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>)</p></td>\n<td><p>The repository or organization the project was removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcard\">\n      <a href=\"#deleteprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectCard</h2>\n  <p>Deletes a project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deleteprojectcardinput\">DeleteProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The column the deleted card was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCardId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted card ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumn\">\n      <a href=\"#deleteprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectColumn</h2>\n  <p>Deletes a project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deleteprojectcolumninput\">DeleteProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedColumnId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted column ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project the deleted column was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreview\">\n      <a href=\"#deletepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReview</h2>\n  <p>Deletes a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deletepullrequestreviewinput\">DeletePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The deleted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcomment\">\n      <a href=\"#deletepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReviewComment</h2>\n  <p>Deletes a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deletepullrequestreviewcommentinput\">DeletePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review the deleted comment belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteref\">\n      <a href=\"#deleteref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteRef</h2>\n  <p>Delete a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deleterefinput\">DeleteRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussion\">\n      <a href=\"#deleteteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussion</h2>\n  <p>Deletes a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deleteteamdiscussioninput\">DeleteTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncomment\">\n      <a href=\"#deleteteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussionComment</h2>\n  <p>Deletes a team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deleteteamdiscussioncommentinput\">DeleteTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreview\">\n      <a href=\"#dismisspullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissPullRequestReview</h2>\n  <p>Dismisses an approved or rejected pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#dismisspullrequestreviewinput\">DismissPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The dismissed pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuser\">\n      <a href=\"#followuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>followUser</h2>\n  <p>Follow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#followuserinput\">FollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was followed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importproject\">\n      <a href=\"#importproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>importProject</h2>\n  <p>Creates a new project by importing columns and a list of issues/PRs.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>importProject</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#import-project-preview\">Import project preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#importprojectinput\">ImportProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new Project!.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoproject\">\n      <a href=\"#linkrepositorytoproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>linkRepositoryToProject</h2>\n  <p>Creates a repository link for a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#linkrepositorytoprojectinput\">LinkRepositoryToProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockable\">\n      <a href=\"#locklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>lockLockable</h2>\n  <p>Lock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#locklockableinput\">LockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockedRecord</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was locked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewed\">\n      <a href=\"#markfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markFileAsViewed</h2>\n  <p>Mark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#markfileasviewedinput\">MarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreview\">\n      <a href=\"#markpullrequestreadyforreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markPullRequestReadyForReview</h2>\n  <p>Marks a pull request ready for review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#markpullrequestreadyforreviewinput\">MarkPullRequestReadyForReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is ready for review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranch\">\n      <a href=\"#mergebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergeBranch</h2>\n  <p>Merge a head into a branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#mergebranchinput\">MergeBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The resulting merge Commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequest\">\n      <a href=\"#mergepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergePullRequest</h2>\n  <p>Merge a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#mergepullrequestinput\">MergePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was merged.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecomment\">\n      <a href=\"#minimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>minimizeComment</h2>\n  <p>Minimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#minimizecommentinput\">MinimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedComment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was minimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcard\">\n      <a href=\"#moveprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectCard</h2>\n  <p>Moves a project card to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#moveprojectcardinput\">MoveProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The new edge of the moved card.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumn\">\n      <a href=\"#moveprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectColumn</h2>\n  <p>Moves a project column to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#moveprojectcolumninput\">MoveProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The new edge of the moved column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissue\">\n      <a href=\"#pinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>pinIssue</h2>\n  <p>Pin an issue to a repository.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>pinIssue</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#pinned-issues-preview\">Pinned issues preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#pinissueinput\">PinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignable\">\n      <a href=\"#removeassigneesfromassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeAssigneesFromAssignable</h2>\n  <p>Removes assignees from an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#removeassigneesfromassignableinput\">RemoveAssigneesFromAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was unassigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmin\">\n      <a href=\"#removeenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseAdmin</h2>\n  <p>Removes an administrator from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#removeenterpriseadmininput\">RemoveEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was removed as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelable\">\n      <a href=\"#removelabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeLabelsFromLabelable</h2>\n  <p>Removes labels from a Labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#removelabelsfromlabelableinput\">RemoveLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The Labelable the labels were removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaborator\">\n      <a href=\"#removeoutsidecollaborator\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeOutsideCollaborator</h2>\n  <p>Removes outside collaborator from all repositories in an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#removeoutsidecollaboratorinput\">RemoveOutsideCollaboratorInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>removedUser</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was removed as an outside collaborator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereaction\">\n      <a href=\"#removereaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeReaction</h2>\n  <p>Removes a reaction from a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#removereactioninput\">RemoveReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestar\">\n      <a href=\"#removestar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeStar</h2>\n  <p>Removes a star from a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#removestarinput\">RemoveStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissue\">\n      <a href=\"#reopenissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenIssue</h2>\n  <p>Reopen a issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reopenissueinput\">ReopenIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequest\">\n      <a href=\"#reopenpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenPullRequest</h2>\n  <p>Reopen a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reopenpullrequestinput\">ReopenPullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was reopened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviews\">\n      <a href=\"#requestreviews\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>requestReviews</h2>\n  <p>Set review requests on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#requestreviewsinput\">RequestReviewsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is getting requests.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewersEdge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#useredge\">UserEdge</a></code>)</p></td>\n<td><p>The edge from the pull request to the requested reviewers.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuite\">\n      <a href=\"#rerequestchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rerequestCheckSuite</h2>\n  <p>Rerequests an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#rerequestchecksuiteinput\">RerequestCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The requested check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthread\">\n      <a href=\"#resolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>resolveReviewThread</h2>\n  <p>Marks a review thread as resolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#resolvereviewthreadinput\">ResolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreview\">\n      <a href=\"#submitpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>submitPullRequestReview</h2>\n  <p>Submits a pending pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#submitpullrequestreviewinput\">SubmitPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The submitted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissue\">\n      <a href=\"#transferissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>transferIssue</h2>\n  <p>Transfer an issue to a different repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#transferissueinput\">TransferIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was transferred.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepository\">\n      <a href=\"#unarchiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unarchiveRepository</h2>\n  <p>Unarchives a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#unarchiverepositoryinput\">UnarchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was unarchived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuser\">\n      <a href=\"#unfollowuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unfollowUser</h2>\n  <p>Unfollow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#unfollowuserinput\">UnfollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was unfollowed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromproject\">\n      <a href=\"#unlinkrepositoryfromproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlinkRepositoryFromProject</h2>\n  <p>Deletes a repository link from a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#unlinkrepositoryfromprojectinput\">UnlinkRepositoryFromProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockable\">\n      <a href=\"#unlocklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlockLockable</h2>\n  <p>Unlock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#unlocklockableinput\">UnlockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unlockedRecord</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was unlocked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewed\">\n      <a href=\"#unmarkfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkFileAsViewed</h2>\n  <p>Unmark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#unmarkfileasviewedinput\">UnmarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicate\">\n      <a href=\"#unmarkissueasduplicate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkIssueAsDuplicate</h2>\n  <p>Unmark an issue as a duplicate of another issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#unmarkissueasduplicateinput\">UnmarkIssueAsDuplicateInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request that was marked as a duplicate.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecomment\">\n      <a href=\"#unminimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unminimizeComment</h2>\n  <p>Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#unminimizecommentinput\">UnminimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unminimizedComment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was unminimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissue\">\n      <a href=\"#unpinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unpinIssue</h2>\n  <p>Unpin a pinned issue from a repository.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>unpinIssue</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#pinned-issues-preview\">Pinned issues preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#unpinissueinput\">UnpinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was unpinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthread\">\n      <a href=\"#unresolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unresolveReviewThread</h2>\n  <p>Marks a review thread as unresolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#unresolvereviewthreadinput\">UnresolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionrule\">\n      <a href=\"#updatebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updatebranchprotectionruleinput\">UpdateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckrun\">\n      <a href=\"#updatecheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckRun</h2>\n  <p>Update a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updatecheckruninput\">UpdateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The updated check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferences\">\n      <a href=\"#updatechecksuitepreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckSuitePreferences</h2>\n  <p>Modifies the settings of an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updatechecksuitepreferencesinput\">UpdateCheckSuitePreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterpriseallowprivaterepositoryforkingsettinginput\">UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsetting\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseDefaultRepositoryPermissionSetting</h2>\n  <p>Sets the default repository permission for organizations in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisedefaultrepositorypermissionsettinginput\">UpdateEnterpriseDefaultRepositoryPermissionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated default repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the default repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</h2>\n  <p>Sets whether organization members with admin permissions on a repository can change repository visibility.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessetting\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanCreateRepositoriesSetting</h2>\n  <p>Sets the members can create repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisememberscancreaterepositoriessettinginput\">UpdateEnterpriseMembersCanCreateRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessetting\">\n      <a href=\"#updateenterprisememberscandeleteissuessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteIssuesSetting</h2>\n  <p>Sets the members can delete issues setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisememberscandeleteissuessettinginput\">UpdateEnterpriseMembersCanDeleteIssuesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessetting\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteRepositoriesSetting</h2>\n  <p>Sets the members can delete repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisememberscandeleterepositoriessettinginput\">UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssetting\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanInviteCollaboratorsSetting</h2>\n  <p>Sets whether members can invite collaborators are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisememberscaninvitecollaboratorssettinginput\">UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessetting\">\n      <a href=\"#updateenterprisememberscanmakepurchasessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanMakePurchasesSetting</h2>\n  <p>Sets whether or not an organization admin can make purchases.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisememberscanmakepurchasessettinginput\">UpdateEnterpriseMembersCanMakePurchasesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessetting\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanUpdateProtectedBranchesSetting</h2>\n  <p>Sets the members can update protected branches setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisememberscanupdateprotectedbranchessettinginput\">UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssetting\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanViewDependencyInsightsSetting</h2>\n  <p>Sets the members can view dependency insights for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisememberscanviewdependencyinsightssettinginput\">UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssetting\">\n      <a href=\"#updateenterpriseorganizationprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOrganizationProjectsSetting</h2>\n  <p>Sets whether organization projects are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterpriseorganizationprojectssettinginput\">UpdateEnterpriseOrganizationProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofile\">\n      <a href=\"#updateenterpriseprofile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseProfile</h2>\n  <p>Updates an enterprise&apos;s profile.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterpriseprofileinput\">UpdateEnterpriseProfileInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssetting\">\n      <a href=\"#updateenterpriserepositoryprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseRepositoryProjectsSetting</h2>\n  <p>Sets whether repository projects are enabled for a enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterpriserepositoryprojectssettinginput\">UpdateEnterpriseRepositoryProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssetting\">\n      <a href=\"#updateenterpriseteamdiscussionssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTeamDiscussionsSetting</h2>\n  <p>Sets whether team discussions are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterpriseteamdiscussionssettinginput\">UpdateEnterpriseTeamDiscussionsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsetting\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTwoFactorAuthenticationRequiredSetting</h2>\n  <p>Sets whether two factor authentication is required for all users in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateenterprisetwofactorauthenticationrequiredsettinginput\">UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsetting\">\n      <a href=\"#updateipallowlistenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEnabledSetting</h2>\n  <p>Sets whether an IP allow list is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateipallowlistenabledsettinginput\">UpdateIpAllowListEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentry\">\n      <a href=\"#updateipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEntry</h2>\n  <p>Updates an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateipallowlistentryinput\">UpdateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissue\">\n      <a href=\"#updateissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssue</h2>\n  <p>Updates an Issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateissueinput\">UpdateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecomment\">\n      <a href=\"#updateissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssueComment</h2>\n  <p>Updates an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateissuecommentinput\">UpdateIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabel\">\n      <a href=\"#updatelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateLabel</h2>\n  <p>Updates an existing label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateLabel</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updatelabelinput\">UpdateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The updated label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateproject\">\n      <a href=\"#updateproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProject</h2>\n  <p>Updates an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateprojectinput\">UpdateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The updated project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcard\">\n      <a href=\"#updateprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectCard</h2>\n  <p>Updates an existing project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateprojectcardinput\">UpdateProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumn\">\n      <a href=\"#updateprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectColumn</h2>\n  <p>Updates an existing project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateprojectcolumninput\">UpdateProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The updated project column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequest\">\n      <a href=\"#updatepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequest</h2>\n  <p>Update a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updatepullrequestinput\">UpdatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreview\">\n      <a href=\"#updatepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReview</h2>\n  <p>Updates the body of a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updatepullrequestreviewinput\">UpdatePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The updated pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcomment\">\n      <a href=\"#updatepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReviewComment</h2>\n  <p>Updates a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updatepullrequestreviewcommentinput\">UpdatePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewComment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateref\">\n      <a href=\"#updateref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRef</h2>\n  <p>Update a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updaterefinput\">UpdateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The updated Ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefs\">\n      <a href=\"#updaterefs\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRefs</h2>\n  <p>Creates, updates and/or deletes multiple refs in a repository.</p>\n<p>This mutation takes a list of <code>RefUpdate</code>s 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.</p>\n<p><code>RefUpdate.beforeOid</code> specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to verify that\nthe references should not exist.</p>\n<p><code>RefUpdate.afterOid</code> specifies the value that the given reference\nwill point to after performing all updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to delete a\nreference.</p>\n<p>If <code>RefUpdate.force</code> is set to <code>true</code>, a non-fast-forward updates\nfor the given reference will be allowed.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateRefs</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updaterefsinput\">UpdateRefsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepository\">\n      <a href=\"#updaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRepository</h2>\n  <p>Update information about a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updaterepositoryinput\">UpdateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscription\">\n      <a href=\"#updatesubscription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSubscription</h2>\n  <p>Updates the state for subscribable subjects.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updatesubscriptioninput\">UpdateSubscriptionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#subscribable\">Subscribable</a></code>)</p></td>\n<td><p>The input subscribable entity.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussion\">\n      <a href=\"#updateteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussion</h2>\n  <p>Updates a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateteamdiscussioninput\">UpdateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The updated discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncomment\">\n      <a href=\"#updateteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussionComment</h2>\n  <p>Updates a discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateteamdiscussioncommentinput\">UpdateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignment\">\n      <a href=\"#updateteamreviewassignment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamReviewAssignment</h2>\n  <p>Updates team review assignment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateTeamReviewAssignment</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updateteamreviewassignmentinput\">UpdateTeamReviewAssignmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team that was modified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopics\">\n      <a href=\"#updatetopics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTopics</h2>\n  <p>Replaces the repository&apos;s topics with the given topics.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#updatetopicsinput\">UpdateTopicsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invalidTopicNames</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Names of the provided topics that are not valid.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcomment\">\n      addComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcomment\">\n      addComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcard\">\n      addProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcard\">\n      addProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreaction\">\n      addReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreaction\">\n      addReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstar\">\n      addStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstar\">\n      addStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepository\">\n      archiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepository\">\n      archiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneproject\">\n      cloneProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneproject\">\n      cloneProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissue\">\n      closeIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissue\">\n      closeIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequest\">\n      closePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequest\">\n      closePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckrun\">\n      createCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckrun\">\n      createCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcontentattachment\">\n      createContentAttachment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcontentattachment\">\n      createContentAttachment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeployment\">\n      createDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeployment\">\n      createDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissue\">\n      createIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissue\">\n      createIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabel\">\n      createLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabel\">\n      createLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createproject\">\n      createProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createproject\">\n      createProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequest\">\n      createPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequest\">\n      createPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createref\">\n      createRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createref\">\n      createRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepository\">\n      createRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepository\">\n      createRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissue\">\n      deleteIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissue\">\n      deleteIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabel\">\n      deleteLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabel\">\n      deleteLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepackageversion\">\n      deletePackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteproject\">\n      deleteProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteproject\">\n      deleteProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteref\">\n      deleteRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteref\">\n      deleteRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuser\">\n      followUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuser\">\n      followUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importproject\">\n      importProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importproject\">\n      importProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockable\">\n      lockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockable\">\n      lockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranch\">\n      mergeBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranch\">\n      mergeBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecomment\">\n      minimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecomment\">\n      minimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissue\">\n      pinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissue\">\n      pinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereaction\">\n      removeReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereaction\">\n      removeReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestar\">\n      removeStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestar\">\n      removeStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissue\">\n      reopenIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissue\">\n      reopenIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviews\">\n      requestReviews</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviews\">\n      requestReviews</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissue\">\n      transferIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissue\">\n      transferIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuser\">\n      unfollowUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuser\">\n      unfollowUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockable\">\n      unlockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockable\">\n      unlockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissue\">\n      unpinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissue\">\n      unpinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissue\">\n      updateIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissue\">\n      updateIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabel\">\n      updateLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabel\">\n      updateLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateproject\">\n      updateProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateproject\">\n      updateProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateref\">\n      updateRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateref\">\n      updateRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefs\">\n      updateRefs</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefs\">\n      updateRefs</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepository\">\n      updateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepository\">\n      updateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscription\">\n      updateSubscription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscription\">\n      updateSubscription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopics\">\n      updateTopics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopics\">\n      updateTopics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -7374,1057 +7374,1057 @@
     "html": "<div>\n  <div>\n    <h2 id=\"abortqueuedmigrations\">\n      <a href=\"#abortqueuedmigrations\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>abortQueuedMigrations</h2>\n  <p>Clear all of a customer&apos;s queued migrations.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#abortqueuedmigrationsinput\">AbortQueuedMigrationsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Did the operation succeed?.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addassigneestoassignable\">\n      <a href=\"#addassigneestoassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addAssigneesToAssignable</h2>\n  <p>Adds assignees to an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addassigneestoassignableinput\">AddAssigneesToAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was assigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addcomment\">\n      <a href=\"#addcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addComment</h2>\n  <p>Adds a comment to an Issue or Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addcommentinput\">AddCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecommentedge\">IssueCommentEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>)</p></td>\n<td><p>The subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineEdge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetimelineitemedge\">IssueTimelineItemEdge</a></code>)</p></td>\n<td><p>The edge from the subject&apos;s timeline connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"adddiscussioncomment\">\n      <a href=\"#adddiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addDiscussionComment</h2>\n  <p>Adds a comment to a Discussion, possibly as a reply to another comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#adddiscussioncommentinput\">AddDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The newly created discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addenterpriseadmin\">\n      <a href=\"#addenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addEnterpriseAdmin</h2>\n  <p>Adds an administrator to the global enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addenterpriseadmininput\">AddEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was added as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addlabelstolabelable\">\n      <a href=\"#addlabelstolabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addLabelsToLabelable</h2>\n  <p>Adds labels to a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addlabelstolabelableinput\">AddLabelsToLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was labeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcard\">\n      <a href=\"#addprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectCard</h2>\n  <p>Adds a card to a ProjectColumn. Either <code>contentId</code> or <code>note</code> must be provided but <strong>not</strong> both.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addprojectcardinput\">AddProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The edge from the ProjectColumn&apos;s card connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The ProjectColumn.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addprojectcolumn\">\n      <a href=\"#addprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addProjectColumn</h2>\n  <p>Adds a column to a Project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addprojectcolumninput\">AddProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The edge from the project&apos;s column connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreview\">\n      <a href=\"#addpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReview</h2>\n  <p>Adds a review to a Pull Request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addpullrequestreviewinput\">AddPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The newly created pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewEdge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewedge\">PullRequestReviewEdge</a></code>)</p></td>\n<td><p>The edge from the pull request&apos;s review connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewcomment\">\n      <a href=\"#addpullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewComment</h2>\n  <p>Adds a comment to a review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addpullrequestreviewcommentinput\">AddPullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The newly created comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentEdge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcommentedge\">PullRequestReviewCommentEdge</a></code>)</p></td>\n<td><p>The edge from the review&apos;s comment connection.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addpullrequestreviewthread\">\n      <a href=\"#addpullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addPullRequestReviewThread</h2>\n  <p>Adds a new thread to a pending Pull Request Review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addpullrequestreviewthreadinput\">AddPullRequestReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The newly created thread.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addreaction\">\n      <a href=\"#addreaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addReaction</h2>\n  <p>Adds a reaction to a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addreactioninput\">AddReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addstar\">\n      <a href=\"#addstar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addStar</h2>\n  <p>Adds a star to a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addstarinput\">AddStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addupvote\">\n      <a href=\"#addupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>addUpvote</h2>\n  <p>Add an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#addupvoteinput\">AddUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"approvedeployments\">\n      <a href=\"#approvedeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>approveDeployments</h2>\n  <p>Approve all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#approvedeploymentsinput\">ApproveDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"archiverepository\">\n      <a href=\"#archiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>archiveRepository</h2>\n  <p>Marks a repository as archived.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#archiverepositoryinput\">ArchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was marked as archived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"changeuserstatus\">\n      <a href=\"#changeuserstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>changeUserStatus</h2>\n  <p>Update your status on GitHub.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#changeuserstatusinput\">ChangeUserStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>Your updated status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clearlabelsfromlabelable\">\n      <a href=\"#clearlabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>clearLabelsFromLabelable</h2>\n  <p>Clears all labels from a labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#clearlabelsfromlabelableinput\">ClearLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The item that was unlabeled.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cloneproject\">\n      <a href=\"#cloneproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneProject</h2>\n  <p>Creates a new project by cloning configuration from an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#cloneprojectinput\">CloneProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>jobStatusId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The id of the JobStatus for populating cloned fields.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new cloned project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"clonetemplaterepository\">\n      <a href=\"#clonetemplaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>cloneTemplateRepository</h2>\n  <p>Create a new repository with the same files and directory structure as a template repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#clonetemplaterepositoryinput\">CloneTemplateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closeissue\">\n      <a href=\"#closeissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closeIssue</h2>\n  <p>Close an issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#closeissueinput\">CloseIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closepullrequest\">\n      <a href=\"#closepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>closePullRequest</h2>\n  <p>Close a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#closepullrequestinput\">ClosePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was closed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertprojectcardnotetoissue\">\n      <a href=\"#convertprojectcardnotetoissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertProjectCardNoteToIssue</h2>\n  <p>Convert a project note card to one associated with a newly created issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#convertprojectcardnotetoissueinput\">ConvertProjectCardNoteToIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertpullrequesttodraft\">\n      <a href=\"#convertpullrequesttodraft\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>convertPullRequestToDraft</h2>\n  <p>Converts a pull request to draft.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#convertpullrequesttodraftinput\">ConvertPullRequestToDraftInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is now a draft.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createbranchprotectionrule\">\n      <a href=\"#createbranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createbranchprotectionruleinput\">CreateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcheckrun\">\n      <a href=\"#createcheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckRun</h2>\n  <p>Create a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createcheckruninput\">CreateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The newly created check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createchecksuite\">\n      <a href=\"#createchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCheckSuite</h2>\n  <p>Create a check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createchecksuiteinput\">CreateCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The newly created check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createcommitonbranch\">\n      <a href=\"#createcommitonbranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createCommitOnBranch</h2>\n  <p>Appends a commit to the given branch as the authenticated user.</p>\n<p>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 <code>git commit</code>.</p>\n<h3 id=\"locating-a-branch\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#locating-a-branch\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Locating a Branch</h3>\n<p>Commits are appended to a <code>branch</code> of type <code>Ref</code>.\nThis must refer to a git branch (i.e.  the fully qualified path must\nbegin with <code>refs/heads/</code>, although including this prefix is optional.</p>\n<p>Callers may specify the <code>branch</code> to commit to either by its global node\nID or by passing both of <code>repositoryNameWithOwner</code> and <code>refName</code>.  For\nmore details see the documentation for <code>CommittableBranch</code>.</p>\n<h3 id=\"describing-changes\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#describing-changes\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Describing Changes</h3>\n<p><code>fileChanges</code> are specified as a <code>FilesChanges</code> object describing\n<code>FileAdditions</code> and <code>FileDeletions</code>.</p>\n<p>Please see the documentation for <code>FileChanges</code> for more information on\nhow to use this argument to describe any set of file changes.</p>\n<h3 id=\"authorship\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#authorship\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Authorship</h3>\n<p>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.</p>\n<p>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.</p>\n<p>If you need full control over author and committer information, please\nuse the Git Database REST API instead.</p>\n<h3 id=\"commit-signing\"><a aria-hidden=\"\" tabindex=\"-1\" class=\"doctocat-link\" href=\"#commit-signing\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display:inline-block;user-select:none;vertical-align:middle\"><path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/></svg></a>Commit Signing</h3>\n<p>Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createcommitonbranchinput\">CreateCommitOnBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref which has been updated to point to the new commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeployment\">\n      <a href=\"#createdeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeployment</h2>\n  <p>Creates a new deployment event.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeployment</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createdeploymentinput\">CreateDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>autoMerged</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>True if the default branch has been auto-merged into the deployment ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The new deployment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdeploymentstatus\">\n      <a href=\"#createdeploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDeploymentStatus</h2>\n  <p>Create a deployment status.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createDeploymentStatus</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createdeploymentstatusinput\">CreateDeploymentStatusInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The new deployment status.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"creatediscussion\">\n      <a href=\"#creatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createDiscussion</h2>\n  <p>Create a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#creatediscussioninput\">CreateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenterpriseorganization\">\n      <a href=\"#createenterpriseorganization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnterpriseOrganization</h2>\n  <p>Creates an organization as part of an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createenterpriseorganizationinput\">CreateEnterpriseOrganizationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise that owns the created organization.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createenvironment\">\n      <a href=\"#createenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createEnvironment</h2>\n  <p>Creates an environment or simply returns it if already exists.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createenvironmentinput\">CreateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The new or existing environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createipallowlistentry\">\n      <a href=\"#createipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIpAllowListEntry</h2>\n  <p>Creates a new IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createipallowlistentryinput\">CreateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was created.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createissue\">\n      <a href=\"#createissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createIssue</h2>\n  <p>Creates a new issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createissueinput\">CreateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The new issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createlabel\">\n      <a href=\"#createlabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createLabel</h2>\n  <p>Creates a new label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>createLabel</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createlabelinput\">CreateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The new label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createmigrationsource\">\n      <a href=\"#createmigrationsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createMigrationSource</h2>\n  <p>Creates an Octoshift migration source.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createmigrationsourceinput\">CreateMigrationSourceInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>migrationSource</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#migrationsource\">MigrationSource</a></code>)</p></td>\n<td><p>The created Octoshift migration source.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createproject\">\n      <a href=\"#createproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createProject</h2>\n  <p>Creates a new project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createprojectinput\">CreateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createpullrequest\">\n      <a href=\"#createpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createPullRequest</h2>\n  <p>Create a new pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createpullrequestinput\">CreatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The new pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createref\">\n      <a href=\"#createref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRef</h2>\n  <p>Create a new Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createrefinput\">CreateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The newly created ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createrepository\">\n      <a href=\"#createrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createRepository</h2>\n  <p>Create a new repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createrepositoryinput\">CreateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The new repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussion\">\n      <a href=\"#createteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussion</h2>\n  <p>Creates a new team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createteamdiscussioninput\">CreateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The new discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createteamdiscussioncomment\">\n      <a href=\"#createteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>createTeamDiscussionComment</h2>\n  <p>Creates a new team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#createteamdiscussioncommentinput\">CreateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The new comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletebranchprotectionrule\">\n      <a href=\"#deletebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteBranchProtectionRule</h2>\n  <p>Delete a branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deletebranchprotectionruleinput\">DeleteBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletedeployment\">\n      <a href=\"#deletedeployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDeployment</h2>\n  <p>Deletes a deployment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deletedeploymentinput\">DeleteDeploymentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussion\">\n      <a href=\"#deletediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussion</h2>\n  <p>Delete a discussion and all of its replies.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deletediscussioninput\">DeleteDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletediscussioncomment\">\n      <a href=\"#deletediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteDiscussionComment</h2>\n  <p>Delete a discussion comment. If it has replies, wipe it instead.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deletediscussioncommentinput\">DeleteDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment that was just deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteenvironment\">\n      <a href=\"#deleteenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteEnvironment</h2>\n  <p>Deletes an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleteenvironmentinput\">DeleteEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteipallowlistentry\">\n      <a href=\"#deleteipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIpAllowListEntry</h2>\n  <p>Deletes an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleteipallowlistentryinput\">DeleteIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was deleted.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissue\">\n      <a href=\"#deleteissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssue</h2>\n  <p>Deletes an Issue object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleteissueinput\">DeleteIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository the issue belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteissuecomment\">\n      <a href=\"#deleteissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteIssueComment</h2>\n  <p>Deletes an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleteissuecommentinput\">DeleteIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletelabel\">\n      <a href=\"#deletelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteLabel</h2>\n  <p>Deletes a label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>deleteLabel</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deletelabelinput\">DeleteLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteproject\">\n      <a href=\"#deleteproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProject</h2>\n  <p>Deletes a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleteprojectinput\">DeleteProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>)</p></td>\n<td><p>The repository or organization the project was removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcard\">\n      <a href=\"#deleteprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectCard</h2>\n  <p>Deletes a project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleteprojectcardinput\">DeleteProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The column the deleted card was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCardId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted card ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteprojectcolumn\">\n      <a href=\"#deleteprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteProjectColumn</h2>\n  <p>Deletes a project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleteprojectcolumninput\">DeleteProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedColumnId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p></td>\n<td><p>The deleted column ID.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The project the deleted column was in.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreview\">\n      <a href=\"#deletepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReview</h2>\n  <p>Deletes a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deletepullrequestreviewinput\">DeletePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The deleted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deletepullrequestreviewcomment\">\n      <a href=\"#deletepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deletePullRequestReviewComment</h2>\n  <p>Deletes a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deletepullrequestreviewcommentinput\">DeletePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review the deleted comment belonged to.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteref\">\n      <a href=\"#deleteref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteRef</h2>\n  <p>Delete a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleterefinput\">DeleteRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussion\">\n      <a href=\"#deleteteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussion</h2>\n  <p>Deletes a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleteteamdiscussioninput\">DeleteTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deleteteamdiscussioncomment\">\n      <a href=\"#deleteteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>deleteTeamDiscussionComment</h2>\n  <p>Deletes a team discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deleteteamdiscussioncommentinput\">DeleteTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disablepullrequestautomerge\">\n      <a href=\"#disablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>disablePullRequestAutoMerge</h2>\n  <p>Disable auto merge on the given pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#disablepullrequestautomergeinput\">DisablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto merge was disabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismisspullrequestreview\">\n      <a href=\"#dismisspullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissPullRequestReview</h2>\n  <p>Dismisses an approved or rejected pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#dismisspullrequestreviewinput\">DismissPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The dismissed pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dismissrepositoryvulnerabilityalert\">\n      <a href=\"#dismissrepositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>dismissRepositoryVulnerabilityAlert</h2>\n  <p>Dismisses the Dependabot alert.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#dismissrepositoryvulnerabilityalertinput\">DismissRepositoryVulnerabilityAlertInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryVulnerabilityAlert</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The Dependabot alert that was dismissed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enablepullrequestautomerge\">\n      <a href=\"#enablepullrequestautomerge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>enablePullRequestAutoMerge</h2>\n  <p>Enable the default auto-merge on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enablepullrequestautomergeinput\">EnablePullRequestAutoMergeInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request auto-merge was enabled on.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followuser\">\n      <a href=\"#followuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>followUser</h2>\n  <p>Follow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#followuserinput\">FollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was followed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantenterpriseorganizationsmigratorrole\">\n      <a href=\"#grantenterpriseorganizationsmigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>grantEnterpriseOrganizationsMigratorRole</h2>\n  <p>Grant the migrator role to a user for all organizations under an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#grantenterpriseorganizationsmigratorroleinput\">GrantEnterpriseOrganizationsMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection</a></code>)</p></td>\n<td><p>The organizations that had the migrator role applied to for the given user.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"grantmigratorrole\">\n      <a href=\"#grantmigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>grantMigratorRole</h2>\n  <p>Grant the migrator role to a user or a team.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#grantmigratorroleinput\">GrantMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Did the operation succeed?.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"importproject\">\n      <a href=\"#importproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>importProject</h2>\n  <p>Creates a new project by importing columns and a list of issues/PRs.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>importProject</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#import-project-preview\">Import project preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#importprojectinput\">ImportProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The new Project!.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"linkrepositorytoproject\">\n      <a href=\"#linkrepositorytoproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>linkRepositoryToProject</h2>\n  <p>Creates a repository link for a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#linkrepositorytoprojectinput\">LinkRepositoryToProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"locklockable\">\n      <a href=\"#locklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>lockLockable</h2>\n  <p>Lock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#locklockableinput\">LockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockedRecord</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was locked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markdiscussioncommentasanswer\">\n      <a href=\"#markdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markDiscussionCommentAsAnswer</h2>\n  <p>Mark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#markdiscussioncommentasanswerinput\">MarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the chosen comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markfileasviewed\">\n      <a href=\"#markfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markFileAsViewed</h2>\n  <p>Mark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#markfileasviewedinput\">MarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markpullrequestreadyforreview\">\n      <a href=\"#markpullrequestreadyforreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>markPullRequestReadyForReview</h2>\n  <p>Marks a pull request ready for review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#markpullrequestreadyforreviewinput\">MarkPullRequestReadyForReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is ready for review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergebranch\">\n      <a href=\"#mergebranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergeBranch</h2>\n  <p>Merge a head into a branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#mergebranchinput\">MergeBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The resulting merge Commit.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergepullrequest\">\n      <a href=\"#mergepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>mergePullRequest</h2>\n  <p>Merge a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#mergepullrequestinput\">MergePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was merged.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"minimizecomment\">\n      <a href=\"#minimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>minimizeComment</h2>\n  <p>Minimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#minimizecommentinput\">MinimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedComment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was minimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcard\">\n      <a href=\"#moveprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectCard</h2>\n  <p>Moves a project card to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#moveprojectcardinput\">MoveProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cardEdge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardedge\">ProjectCardEdge</a></code>)</p></td>\n<td><p>The new edge of the moved card.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"moveprojectcolumn\">\n      <a href=\"#moveprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>moveProjectColumn</h2>\n  <p>Moves a project column to another place.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#moveprojectcolumninput\">MoveProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columnEdge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumnedge\">ProjectColumnEdge</a></code>)</p></td>\n<td><p>The new edge of the moved column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinissue\">\n      <a href=\"#pinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>pinIssue</h2>\n  <p>Pin an issue to a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#pinissueinput\">PinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rejectdeployments\">\n      <a href=\"#rejectdeployments\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rejectDeployments</h2>\n  <p>Reject all pending deployments under one or more environments.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#rejectdeploymentsinput\">RejectDeploymentsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">[Deployment!]</a></code>)</p></td>\n<td><p>The affected deployments.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeassigneesfromassignable\">\n      <a href=\"#removeassigneesfromassignable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeAssigneesFromAssignable</h2>\n  <p>Removes assignees from an assignable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#removeassigneesfromassignableinput\">RemoveAssigneesFromAssignableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>)</p></td>\n<td><p>The item that was unassigned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeenterpriseadmin\">\n      <a href=\"#removeenterpriseadmin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeEnterpriseAdmin</h2>\n  <p>Removes an administrator from the enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#removeenterpriseadmininput\">RemoveEnterpriseAdminInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was removed as an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of removing an administrator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The viewer performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removelabelsfromlabelable\">\n      <a href=\"#removelabelsfromlabelable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeLabelsFromLabelable</h2>\n  <p>Removes labels from a Labelable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#removelabelsfromlabelableinput\">RemoveLabelsFromLabelableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>)</p></td>\n<td><p>The Labelable the labels were removed from.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeoutsidecollaborator\">\n      <a href=\"#removeoutsidecollaborator\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeOutsideCollaborator</h2>\n  <p>Removes outside collaborator from all repositories in an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#removeoutsidecollaboratorinput\">RemoveOutsideCollaboratorInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>removedUser</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was removed as an outside collaborator.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removereaction\">\n      <a href=\"#removereaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeReaction</h2>\n  <p>Removes a reaction from a subject.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#removereactioninput\">RemoveReactionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reaction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The reaction object.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>)</p></td>\n<td><p>The reactable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removestar\">\n      <a href=\"#removestar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeStar</h2>\n  <p>Removes a star from a Starrable.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#removestarinput\">RemoveStarInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starrable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>)</p></td>\n<td><p>The starrable.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removeupvote\">\n      <a href=\"#removeupvote\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>removeUpvote</h2>\n  <p>Remove an upvote to a discussion or discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#removeupvoteinput\">RemoveUpvoteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#votable\">Votable</a></code>)</p></td>\n<td><p>The votable subject.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenissue\">\n      <a href=\"#reopenissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenIssue</h2>\n  <p>Reopen a issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reopenissueinput\">ReopenIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenpullrequest\">\n      <a href=\"#reopenpullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>reopenPullRequest</h2>\n  <p>Reopen a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reopenpullrequestinput\">ReopenPullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that was reopened.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requestreviews\">\n      <a href=\"#requestreviews\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>requestReviews</h2>\n  <p>Set review requests on a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#requestreviewsinput\">RequestReviewsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The pull request that is getting requests.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewersEdge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useredge\">UserEdge</a></code>)</p></td>\n<td><p>The edge from the pull request to the requested reviewers.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"rerequestchecksuite\">\n      <a href=\"#rerequestchecksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>rerequestCheckSuite</h2>\n  <p>Rerequests an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#rerequestchecksuiteinput\">RerequestCheckSuiteInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The requested check suite.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"resolvereviewthread\">\n      <a href=\"#resolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>resolveReviewThread</h2>\n  <p>Marks a review thread as resolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#resolvereviewthreadinput\">ResolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokeenterpriseorganizationsmigratorrole\">\n      <a href=\"#revokeenterpriseorganizationsmigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>revokeEnterpriseOrganizationsMigratorRole</h2>\n  <p>Revoke the migrator role to a user for all organizations under an enterprise account.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#revokeenterpriseorganizationsmigratorroleinput\">RevokeEnterpriseOrganizationsMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection</a></code>)</p></td>\n<td><p>The organizations that had the migrator role revoked for the given user.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"revokemigratorrole\">\n      <a href=\"#revokemigratorrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>revokeMigratorRole</h2>\n  <p>Revoke the migrator role from a user or a team.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#revokemigratorroleinput\">RevokeMigratorRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>success</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Did the operation succeed?.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"startrepositorymigration\">\n      <a href=\"#startrepositorymigration\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>startRepositoryMigration</h2>\n  <p>Start a repository migration.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#startrepositorymigrationinput\">StartRepositoryMigrationInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryMigration</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorymigration\">RepositoryMigration</a></code>)</p></td>\n<td><p>The new Octoshift repository migration.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submitpullrequestreview\">\n      <a href=\"#submitpullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>submitPullRequestReview</h2>\n  <p>Submits a pending pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#submitpullrequestreviewinput\">SubmitPullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The submitted pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferissue\">\n      <a href=\"#transferissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>transferIssue</h2>\n  <p>Transfer an issue to a different repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#transferissueinput\">TransferIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was transferred.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unarchiverepository\">\n      <a href=\"#unarchiverepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unarchiveRepository</h2>\n  <p>Unarchives a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unarchiverepositoryinput\">UnarchiveRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository that was unarchived.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unfollowuser\">\n      <a href=\"#unfollowuser\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unfollowUser</h2>\n  <p>Unfollow a user.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unfollowuserinput\">UnfollowUserInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that was unfollowed.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlinkrepositoryfromproject\">\n      <a href=\"#unlinkrepositoryfromproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlinkRepositoryFromProject</h2>\n  <p>Deletes a repository link from a project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unlinkrepositoryfromprojectinput\">UnlinkRepositoryFromProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The linked Project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The linked Repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlocklockable\">\n      <a href=\"#unlocklockable\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unlockLockable</h2>\n  <p>Unlock a lockable object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unlocklockableinput\">UnlockLockableInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unlockedRecord</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>)</p></td>\n<td><p>The item that was unlocked.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkdiscussioncommentasanswer\">\n      <a href=\"#unmarkdiscussioncommentasanswer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkDiscussionCommentAsAnswer</h2>\n  <p>Unmark a discussion comment as the chosen answer for discussions in an answerable category.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unmarkdiscussioncommentasanswerinput\">UnmarkDiscussionCommentAsAnswerInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that includes the comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkfileasviewed\">\n      <a href=\"#unmarkfileasviewed\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkFileAsViewed</h2>\n  <p>Unmark a pull request file as viewed.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unmarkfileasviewedinput\">UnmarkFileAsViewedInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkissueasduplicate\">\n      <a href=\"#unmarkissueasduplicate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unmarkIssueAsDuplicate</h2>\n  <p>Unmark an issue as a duplicate of another issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unmarkissueasduplicateinput\">UnmarkIssueAsDuplicateInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request that was marked as a duplicate.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unminimizecomment\">\n      <a href=\"#unminimizecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unminimizeComment</h2>\n  <p>Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unminimizecommentinput\">UnminimizeCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>unminimizedComment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>)</p></td>\n<td><p>The comment that was unminimized.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinissue\">\n      <a href=\"#unpinissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unpinIssue</h2>\n  <p>Unpin a pinned issue from a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unpinissueinput\">UnpinIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue that was unpinned.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unresolvereviewthread\">\n      <a href=\"#unresolvereviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>unresolveReviewThread</h2>\n  <p>Marks a review thread as unresolved.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#unresolvereviewthreadinput\">UnresolveReviewThreadInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>thread</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The thread to resolve.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatebranchprotectionrule\">\n      <a href=\"#updatebranchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateBranchProtectionRule</h2>\n  <p>Create a new branch protection rule.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatebranchprotectionruleinput\">UpdateBranchProtectionRuleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The newly created BranchProtectionRule.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatecheckrun\">\n      <a href=\"#updatecheckrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckRun</h2>\n  <p>Update a check run.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatecheckruninput\">UpdateCheckRunInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkRun</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The updated check run.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatechecksuitepreferences\">\n      <a href=\"#updatechecksuitepreferences\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateCheckSuitePreferences</h2>\n  <p>Modifies the settings of an existing check suite.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatechecksuitepreferencesinput\">UpdateCheckSuitePreferencesInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussion\">\n      <a href=\"#updatediscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussion</h2>\n  <p>Update a discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatediscussioninput\">UpdateDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The modified discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatediscussioncomment\">\n      <a href=\"#updatediscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateDiscussionComment</h2>\n  <p>Update the contents of a comment on a Discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatediscussioncommentinput\">UpdateDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The modified discussion comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateenterpriseallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterpriseallowprivaterepositoryforkingsettinginput\">UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisedefaultrepositorypermissionsetting\">\n      <a href=\"#updateenterprisedefaultrepositorypermissionsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseDefaultRepositoryPermissionSetting</h2>\n  <p>Sets the base repository permission for organizations in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisedefaultrepositorypermissionsettinginput\">UpdateEnterpriseDefaultRepositoryPermissionSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the base repository permission setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      <a href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</h2>\n  <p>Sets whether organization members with admin permissions on a repository can change repository visibility.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisememberscanchangerepositoryvisibilitysettinginput\">UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can change repository visibility setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscancreaterepositoriessetting\">\n      <a href=\"#updateenterprisememberscancreaterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanCreateRepositoriesSetting</h2>\n  <p>Sets the members can create repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisememberscancreaterepositoriessettinginput\">UpdateEnterpriseMembersCanCreateRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can create repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleteissuessetting\">\n      <a href=\"#updateenterprisememberscandeleteissuessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteIssuesSetting</h2>\n  <p>Sets the members can delete issues setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisememberscandeleteissuessettinginput\">UpdateEnterpriseMembersCanDeleteIssuesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete issues setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscandeleterepositoriessetting\">\n      <a href=\"#updateenterprisememberscandeleterepositoriessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanDeleteRepositoriesSetting</h2>\n  <p>Sets the members can delete repositories setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisememberscandeleterepositoriessettinginput\">UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can delete repositories setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscaninvitecollaboratorssetting\">\n      <a href=\"#updateenterprisememberscaninvitecollaboratorssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanInviteCollaboratorsSetting</h2>\n  <p>Sets whether members can invite collaborators are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisememberscaninvitecollaboratorssettinginput\">UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can invite collaborators setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanmakepurchasessetting\">\n      <a href=\"#updateenterprisememberscanmakepurchasessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanMakePurchasesSetting</h2>\n  <p>Sets whether or not an organization admin can make purchases.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisememberscanmakepurchasessettinginput\">UpdateEnterpriseMembersCanMakePurchasesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can make purchases setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanupdateprotectedbranchessetting\">\n      <a href=\"#updateenterprisememberscanupdateprotectedbranchessetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanUpdateProtectedBranchesSetting</h2>\n  <p>Sets the members can update protected branches setting for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisememberscanupdateprotectedbranchessettinginput\">UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can update protected branches setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisememberscanviewdependencyinsightssetting\">\n      <a href=\"#updateenterprisememberscanviewdependencyinsightssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseMembersCanViewDependencyInsightsSetting</h2>\n  <p>Sets the members can view dependency insights for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisememberscanviewdependencyinsightssettinginput\">UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the members can view dependency insights setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseorganizationprojectssetting\">\n      <a href=\"#updateenterpriseorganizationprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOrganizationProjectsSetting</h2>\n  <p>Sets whether organization projects are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterpriseorganizationprojectssettinginput\">UpdateEnterpriseOrganizationProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the organization projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseownerorganizationrole\">\n      <a href=\"#updateenterpriseownerorganizationrole\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseOwnerOrganizationRole</h2>\n  <p>Updates the role of an enterprise owner with an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterpriseownerorganizationroleinput\">UpdateEnterpriseOwnerOrganizationRoleInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of changing the owner&apos;s organization role.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseprofile\">\n      <a href=\"#updateenterpriseprofile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseProfile</h2>\n  <p>Updates an enterprise&apos;s profile.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterpriseprofileinput\">UpdateEnterpriseProfileInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The updated enterprise.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriserepositoryprojectssetting\">\n      <a href=\"#updateenterpriserepositoryprojectssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseRepositoryProjectsSetting</h2>\n  <p>Sets whether repository projects are enabled for a enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterpriserepositoryprojectssettinginput\">UpdateEnterpriseRepositoryProjectsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the repository projects setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterpriseteamdiscussionssetting\">\n      <a href=\"#updateenterpriseteamdiscussionssetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTeamDiscussionsSetting</h2>\n  <p>Sets whether team discussions are enabled for an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterpriseteamdiscussionssettinginput\">UpdateEnterpriseTeamDiscussionsSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the team discussions setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenterprisetwofactorauthenticationrequiredsetting\">\n      <a href=\"#updateenterprisetwofactorauthenticationrequiredsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnterpriseTwoFactorAuthenticationRequiredSetting</h2>\n  <p>Sets whether two factor authentication is required for all users in an enterprise.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenterprisetwofactorauthenticationrequiredsettinginput\">UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise with the updated two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the two factor authentication required setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateenvironment\">\n      <a href=\"#updateenvironment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateEnvironment</h2>\n  <p>Updates an environment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateenvironmentinput\">UpdateEnvironmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The updated environment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistenabledsetting\">\n      <a href=\"#updateipallowlistenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEnabledSetting</h2>\n  <p>Sets whether an IP allow list is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateipallowlistenabledsettinginput\">UpdateIpAllowListEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistentry\">\n      <a href=\"#updateipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListEntry</h2>\n  <p>Updates an IP allow list entry.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateipallowlistentryinput\">UpdateIpAllowListEntryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntry</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The IP allow list entry that was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateipallowlistforinstalledappsenabledsetting\">\n      <a href=\"#updateipallowlistforinstalledappsenabledsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIpAllowListForInstalledAppsEnabledSetting</h2>\n  <p>Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateipallowlistforinstalledappsenabledsettinginput\">UpdateIpAllowListForInstalledAppsEnabledSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner</a></code>)</p></td>\n<td><p>The IP allow list owner on which the setting was updated.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissue\">\n      <a href=\"#updateissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssue</h2>\n  <p>Updates an Issue.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateissueinput\">UpdateIssueInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The issue.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateissuecomment\">\n      <a href=\"#updateissuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateIssueComment</h2>\n  <p>Updates an IssueComment object.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateissuecommentinput\">UpdateIssueCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatelabel\">\n      <a href=\"#updatelabel\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateLabel</h2>\n  <p>Updates an existing label.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateLabel</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#labels-preview\">Labels preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatelabelinput\">UpdateLabelInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The updated label.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateorganizationallowprivaterepositoryforkingsetting\">\n      <a href=\"#updateorganizationallowprivaterepositoryforkingsetting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateOrganizationAllowPrivateRepositoryForkingSetting</h2>\n  <p>Sets whether private repository forks are enabled for an organization.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput\">UpdateOrganizationAllowPrivateRepositoryForkingSettingInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A message confirming the result of updating the allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization with the updated allow private repository forking setting.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateproject\">\n      <a href=\"#updateproject\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProject</h2>\n  <p>Updates an existing project.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateprojectinput\">UpdateProjectInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The updated project.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcard\">\n      <a href=\"#updateprojectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectCard</h2>\n  <p>Updates an existing project card.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateprojectcardinput\">UpdateProjectCardInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The updated ProjectCard.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateprojectcolumn\">\n      <a href=\"#updateprojectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateProjectColumn</h2>\n  <p>Updates an existing project column.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateprojectcolumninput\">UpdateProjectColumnInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumn</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The updated project column.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequest\">\n      <a href=\"#updatepullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequest</h2>\n  <p>Update a pull request.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatepullrequestinput\">UpdatePullRequestInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestbranch\">\n      <a href=\"#updatepullrequestbranch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestBranch</h2>\n  <p>Merge HEAD from upstream branch into pull request branch.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatepullrequestbranchinput\">UpdatePullRequestBranchInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The updated pull request.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreview\">\n      <a href=\"#updatepullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReview</h2>\n  <p>Updates the body of a pull request review.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatepullrequestreviewinput\">UpdatePullRequestReviewInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The updated pull request review.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatepullrequestreviewcomment\">\n      <a href=\"#updatepullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updatePullRequestReviewComment</h2>\n  <p>Updates a pull request review comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatepullrequestreviewcommentinput\">UpdatePullRequestReviewCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewComment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateref\">\n      <a href=\"#updateref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRef</h2>\n  <p>Update a Git Ref.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updaterefinput\">UpdateRefInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The updated Ref.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterefs\">\n      <a href=\"#updaterefs\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRefs</h2>\n  <p>Creates, updates and/or deletes multiple refs in a repository.</p>\n<p>This mutation takes a list of <code>RefUpdate</code>s 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.</p>\n<p><code>RefUpdate.beforeOid</code> specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to verify that\nthe references should not exist.</p>\n<p><code>RefUpdate.afterOid</code> specifies the value that the given reference\nwill point to after performing all updates. A value of\n<code>0000000000000000000000000000000000000000</code> can be used to delete a\nreference.</p>\n<p>If <code>RefUpdate.force</code> is set to <code>true</code>, a non-fast-forward updates\nfor the given reference will be allowed.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateRefs</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#update-refs-preview\">Update refs preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updaterefsinput\">UpdateRefsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updaterepository\">\n      <a href=\"#updaterepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateRepository</h2>\n  <p>Update information about a repository.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updaterepositoryinput\">UpdateRepositoryInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatesubscription\">\n      <a href=\"#updatesubscription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateSubscription</h2>\n  <p>Updates the state for subscribable subjects.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatesubscriptioninput\">UpdateSubscriptionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>)</p></td>\n<td><p>The input subscribable entity.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussion\">\n      <a href=\"#updateteamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussion</h2>\n  <p>Updates a team discussion.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateteamdiscussioninput\">UpdateTeamDiscussionInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The updated discussion.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamdiscussioncomment\">\n      <a href=\"#updateteamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamDiscussionComment</h2>\n  <p>Updates a discussion comment.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateteamdiscussioncommentinput\">UpdateTeamDiscussionCommentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionComment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The updated comment.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updateteamreviewassignment\">\n      <a href=\"#updateteamreviewassignment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTeamReviewAssignment</h2>\n  <p>Updates team review assignment.</p>\n  </div>\n\n  <div>\n  \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>updateTeamReviewAssignment</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updateteamreviewassignmentinput\">UpdateTeamReviewAssignmentInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team that was modified.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"updatetopics\">\n      <a href=\"#updatetopics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>updateTopics</h2>\n  <p>Replaces the repository&apos;s topics with the given topics.</p>\n  </div>\n\n  <div>\n  \n\n  \n\n  \n  \n  <h4>Input fields</h4>\n\n<ul>\n<li><code>input</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#updatetopicsinput\">UpdateTopicsInput!</a></code>)</li>\n</ul>\n\n\n\n\n\n\n \n  <h4>Return fields</h4>\n<table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>clientMutationId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A unique identifier for the client performing the mutation.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invalidTopicNames</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Names of the provided topics that are not valid.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The updated repository.</p>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n\n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#abortqueuedmigrations\">\n      abortQueuedMigrations</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#abortqueuedmigrations\">\n      abortQueuedMigrations</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addassigneestoassignable\">\n      addAssigneesToAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addcomment\">\n      addComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addcomment\">\n      addComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#adddiscussioncomment\">\n      addDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addenterpriseadmin\">\n      addEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addlabelstolabelable\">\n      addLabelsToLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcard\">\n      addProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcard\">\n      addProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addprojectcolumn\">\n      addProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreview\">\n      addPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewcomment\">\n      addPullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addpullrequestreviewthread\">\n      addPullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addreaction\">\n      addReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addreaction\">\n      addReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addstar\">\n      addStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addstar\">\n      addStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addupvote\">\n      addUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addupvote\">\n      addUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#approvedeployments\">\n      approveDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#approvedeployments\">\n      approveDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#archiverepository\">\n      archiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#archiverepository\">\n      archiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#changeuserstatus\">\n      changeUserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clearlabelsfromlabelable\">\n      clearLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cloneproject\">\n      cloneProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cloneproject\">\n      cloneProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#clonetemplaterepository\">\n      cloneTemplateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closeissue\">\n      closeIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closeissue\">\n      closeIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closepullrequest\">\n      closePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closepullrequest\">\n      closePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertprojectcardnotetoissue\">\n      convertProjectCardNoteToIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertpullrequesttodraft\">\n      convertPullRequestToDraft</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createbranchprotectionrule\">\n      createBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcheckrun\">\n      createCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcheckrun\">\n      createCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createchecksuite\">\n      createCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createcommitonbranch\">\n      createCommitOnBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeployment\">\n      createDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeployment\">\n      createDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdeploymentstatus\">\n      createDeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#creatediscussion\">\n      createDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#creatediscussion\">\n      createDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenterpriseorganization\">\n      createEnterpriseOrganization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createenvironment\">\n      createEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createenvironment\">\n      createEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createipallowlistentry\">\n      createIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createissue\">\n      createIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createissue\">\n      createIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createlabel\">\n      createLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createlabel\">\n      createLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createmigrationsource\">\n      createMigrationSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createmigrationsource\">\n      createMigrationSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createproject\">\n      createProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createproject\">\n      createProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createpullrequest\">\n      createPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createpullrequest\">\n      createPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createref\">\n      createRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createref\">\n      createRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createrepository\">\n      createRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createrepository\">\n      createRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussion\">\n      createTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createteamdiscussioncomment\">\n      createTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletebranchprotectionrule\">\n      deleteBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletedeployment\">\n      deleteDeployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussion\">\n      deleteDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletediscussioncomment\">\n      deleteDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteenvironment\">\n      deleteEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteipallowlistentry\">\n      deleteIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissue\">\n      deleteIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissue\">\n      deleteIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteissuecomment\">\n      deleteIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletelabel\">\n      deleteLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletelabel\">\n      deleteLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteproject\">\n      deleteProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteproject\">\n      deleteProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcard\">\n      deleteProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteprojectcolumn\">\n      deleteProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreview\">\n      deletePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deletepullrequestreviewcomment\">\n      deletePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteref\">\n      deleteRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteref\">\n      deleteRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussion\">\n      deleteTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deleteteamdiscussioncomment\">\n      deleteTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disablepullrequestautomerge\">\n      disablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismisspullrequestreview\">\n      dismissPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dismissrepositoryvulnerabilityalert\">\n      dismissRepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dismissrepositoryvulnerabilityalert\">\n      dismissRepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enablepullrequestautomerge\">\n      enablePullRequestAutoMerge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followuser\">\n      followUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followuser\">\n      followUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantenterpriseorganizationsmigratorrole\">\n      grantEnterpriseOrganizationsMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantenterpriseorganizationsmigratorrole\">\n      grantEnterpriseOrganizationsMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#grantmigratorrole\">\n      grantMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#grantmigratorrole\">\n      grantMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#importproject\">\n      importProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#importproject\">\n      importProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#linkrepositorytoproject\">\n      linkRepositoryToProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#locklockable\">\n      lockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#locklockable\">\n      lockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markdiscussioncommentasanswer\">\n      markDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markfileasviewed\">\n      markFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markpullrequestreadyforreview\">\n      markPullRequestReadyForReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergebranch\">\n      mergeBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergebranch\">\n      mergeBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergepullrequest\">\n      mergePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#minimizecomment\">\n      minimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#minimizecomment\">\n      minimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcard\">\n      moveProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#moveprojectcolumn\">\n      moveProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinissue\">\n      pinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinissue\">\n      pinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rejectdeployments\">\n      rejectDeployments</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeassigneesfromassignable\">\n      removeAssigneesFromAssignable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeenterpriseadmin\">\n      removeEnterpriseAdmin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removelabelsfromlabelable\">\n      removeLabelsFromLabelable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeoutsidecollaborator\">\n      removeOutsideCollaborator</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removereaction\">\n      removeReaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removereaction\">\n      removeReaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removestar\">\n      removeStar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removestar\">\n      removeStar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removeupvote\">\n      removeUpvote</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removeupvote\">\n      removeUpvote</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenissue\">\n      reopenIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenissue\">\n      reopenIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenpullrequest\">\n      reopenPullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requestreviews\">\n      requestReviews</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requestreviews\">\n      requestReviews</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#rerequestchecksuite\">\n      rerequestCheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#resolvereviewthread\">\n      resolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokeenterpriseorganizationsmigratorrole\">\n      revokeEnterpriseOrganizationsMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokeenterpriseorganizationsmigratorrole\">\n      revokeEnterpriseOrganizationsMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#revokemigratorrole\">\n      revokeMigratorRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#revokemigratorrole\">\n      revokeMigratorRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#startrepositorymigration\">\n      startRepositoryMigration</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#startrepositorymigration\">\n      startRepositoryMigration</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submitpullrequestreview\">\n      submitPullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferissue\">\n      transferIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferissue\">\n      transferIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unarchiverepository\">\n      unarchiveRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unfollowuser\">\n      unfollowUser</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unfollowuser\">\n      unfollowUser</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlinkrepositoryfromproject\">\n      unlinkRepositoryFromProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlocklockable\">\n      unlockLockable</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlocklockable\">\n      unlockLockable</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkdiscussioncommentasanswer\">\n      unmarkDiscussionCommentAsAnswer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkfileasviewed\">\n      unmarkFileAsViewed</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkissueasduplicate\">\n      unmarkIssueAsDuplicate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unminimizecomment\">\n      unminimizeComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinissue\">\n      unpinIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinissue\">\n      unpinIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unresolvereviewthread\">\n      unresolveReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatebranchprotectionrule\">\n      updateBranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatecheckrun\">\n      updateCheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatechecksuitepreferences\">\n      updateCheckSuitePreferences</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussion\">\n      updateDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatediscussioncomment\">\n      updateDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseallowprivaterepositoryforkingsetting\">\n      updateEnterpriseAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisedefaultrepositorypermissionsetting\">\n      updateEnterpriseDefaultRepositoryPermissionSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanchangerepositoryvisibilitysetting\">\n      updateEnterpriseMembersCanChangeRepositoryVisibilitySetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscancreaterepositoriessetting\">\n      updateEnterpriseMembersCanCreateRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleteissuessetting\">\n      updateEnterpriseMembersCanDeleteIssuesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscandeleterepositoriessetting\">\n      updateEnterpriseMembersCanDeleteRepositoriesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscaninvitecollaboratorssetting\">\n      updateEnterpriseMembersCanInviteCollaboratorsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanmakepurchasessetting\">\n      updateEnterpriseMembersCanMakePurchasesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanupdateprotectedbranchessetting\">\n      updateEnterpriseMembersCanUpdateProtectedBranchesSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisememberscanviewdependencyinsightssetting\">\n      updateEnterpriseMembersCanViewDependencyInsightsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseorganizationprojectssetting\">\n      updateEnterpriseOrganizationProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseownerorganizationrole\">\n      updateEnterpriseOwnerOrganizationRole</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseownerorganizationrole\">\n      updateEnterpriseOwnerOrganizationRole</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseprofile\">\n      updateEnterpriseProfile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriserepositoryprojectssetting\">\n      updateEnterpriseRepositoryProjectsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterpriseteamdiscussionssetting\">\n      updateEnterpriseTeamDiscussionsSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenterprisetwofactorauthenticationrequiredsetting\">\n      updateEnterpriseTwoFactorAuthenticationRequiredSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateenvironment\">\n      updateEnvironment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistenabledsetting\">\n      updateIpAllowListEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistentry\">\n      updateIpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateipallowlistforinstalledappsenabledsetting\">\n      updateIpAllowListForInstalledAppsEnabledSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissue\">\n      updateIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissue\">\n      updateIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateissuecomment\">\n      updateIssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatelabel\">\n      updateLabel</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatelabel\">\n      updateLabel</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateorganizationallowprivaterepositoryforkingsetting\">\n      updateOrganizationAllowPrivateRepositoryForkingSetting</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateorganizationallowprivaterepositoryforkingsetting\">\n      updateOrganizationAllowPrivateRepositoryForkingSetting</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateproject\">\n      updateProject</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateproject\">\n      updateProject</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcard\">\n      updateProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateprojectcolumn\">\n      updateProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequest\">\n      updatePullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestbranch\">\n      updatePullRequestBranch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestbranch\">\n      updatePullRequestBranch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreview\">\n      updatePullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatepullrequestreviewcomment\">\n      updatePullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateref\">\n      updateRef</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateref\">\n      updateRef</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterefs\">\n      updateRefs</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterefs\">\n      updateRefs</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updaterepository\">\n      updateRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updaterepository\">\n      updateRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatesubscription\">\n      updateSubscription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatesubscription\">\n      updateSubscription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussion\">\n      updateTeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamdiscussioncomment\">\n      updateTeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updateteamreviewassignment\">\n      updateTeamReviewAssignment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#updatetopics\">\n      updateTopics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#updatetopics\">\n      updateTopics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
diff --git a/lib/graphql/static/prerendered-objects.json b/lib/graphql/static/prerendered-objects.json
index 15d21c258c73..1ea0d85b41d7 100644
--- a/lib/graphql/static/prerendered-objects.json
+++ b/lib/graphql/static/prerendered-objects.json
@@ -1,3754 +1,3754 @@
 {
   "dotcom": {
-    "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses of the app.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushAllowances</code> (<code><a href=\"/en/graphql/reference/objects#bypassforcepushallowanceconnection\">BypassForcePushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to force push for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestAllowances</code> (<code><a href=\"/en/graphql/reference/objects#bypasspullrequestallowanceconnection\">BypassPullRequestAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to bypass PRs for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/graphql/reference/objects#requiredstatuscheckdescription\">[RequiredStatusCheckDescription!]</a></code>)</p></td>\n<td><p>List of required status checks that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowance\">\n      <a href=\"#bypassforcepushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowance</h2>\n    <p>A team or user who has the ability to bypass a force push requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceconnection\">\n      <a href=\"#bypassforcepushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceConnection</h2>\n    <p>The connection type for BypassForcePushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#bypassforcepushallowanceedge\">[BypassForcePushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#bypassforcepushallowance\">[BypassForcePushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceedge\">\n      <a href=\"#bypassforcepushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#bypassforcepushallowance\">BypassForcePushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowance\">\n      <a href=\"#bypasspullrequestallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowance</h2>\n    <p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceconnection\">\n      <a href=\"#bypasspullrequestallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceConnection</h2>\n    <p>The connection type for BypassPullRequestAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#bypasspullrequestallowanceedge\">[BypassPullRequestAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#bypasspullrequestallowance\">[BypassPullRequestAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceedge\">\n      <a href=\"#bypasspullrequestallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#bypasspullrequestallowance\">BypassPullRequestAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The corresponding deployment for this job, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequest</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>Information about a pending deployment, if any, in this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>steps</code> (<code><a href=\"/en/graphql/reference/objects#checkstepconnection\">CheckStepConnection</a></code>)</p></td>\n<td><p>The check run&apos;s steps.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Step number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstep\">\n      <a href=\"#checkstep\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStep</h2>\n    <p>A single check step.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check step on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The step&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The index of the step in the list of steps of the parent check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondsToCompletion</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of seconds to completion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepconnection\">\n      <a href=\"#checkstepconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepConnection</h2>\n    <p>The connection type for CheckStep.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#checkstepedge\">[CheckStepEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#checkstep\">[CheckStep]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepedge\">\n      <a href=\"#checkstepedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#checkstep\">CheckStep</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who triggered the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRun</code> (<code><a href=\"/en/graphql/reference/objects#workflowrun\">WorkflowRun</a></code>)</p></td>\n<td><p>The workflow run associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertedtodiscussionevent\">\n      <a href=\"#convertedtodiscussionevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedToDiscussionEvent</h2>\n    <p>Represents a<code>converted_to_discussion</code>event on a given issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that the issue was converted into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependency\">\n      <a href=\"#dependencygraphdependency\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependency</h2>\n    <p>A dependency manifest entry.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependency</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasDependencies</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the dependency itself have dependencies?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageLabel</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The original name of the package, as it appears in the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageManager</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The dependency package manager.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository containing the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requirements</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The dependency version requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependencyconnection\">\n      <a href=\"#dependencygraphdependencyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependencyConnection</h2>\n    <p>The connection type for DependencyGraphDependency.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependencyConnection</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphdependencyedge\">[DependencyGraphDependencyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphdependency\">[DependencyGraphDependency]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependencyedge\">\n      <a href=\"#dependencygraphdependencyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependencyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependencyEdge</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphdependency\">DependencyGraphDependency</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifest\">\n      <a href=\"#dependencygraphmanifest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifest</h2>\n    <p>Dependency manifest for a repository.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifest</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>blobPath</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to view the manifest file blob.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependencies</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphdependencyconnection\">DependencyGraphDependencyConnection</a></code>)</p></td>\n<td><p>A list of manifest dependencies.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependenciesCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of dependencies listed in the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>exceedsMaxSize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the manifest too big to parse?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Fully qualified manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parseable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Were we able to parse the manifest?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifestconnection\">\n      <a href=\"#dependencygraphmanifestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifestConnection</h2>\n    <p>The connection type for DependencyGraphManifest.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifestConnection</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphmanifestedge\">[DependencyGraphManifestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphmanifest\">[DependencyGraphManifest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifestedge\">\n      <a href=\"#dependencygraphmanifestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifestEdge</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphmanifest\">DependencyGraphManifest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionrule\">\n      <a href=\"#deploymentprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRule</h2>\n    <p>A protection rule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeout</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The timeout in minutes for this protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/enums#deploymentprotectionruletype\">DeploymentProtectionRuleType!</a></code>)</p></td>\n<td><p>The type of protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleconnection\">\n      <a href=\"#deploymentprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleConnection</h2>\n    <p>The connection type for DeploymentProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentprotectionruleedge\">[DeploymentProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploymentprotectionrule\">[DeploymentProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleedge\">\n      <a href=\"#deploymentprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploymentprotectionrule\">DeploymentProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequest\">\n      <a href=\"#deploymentrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequest</h2>\n    <p>A request to deploy a workflow run to an environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>currentUserCanApprove</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can approve the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/objects#environment\">Environment!</a></code>)</p></td>\n<td><p>The target environment of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimerStartedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestconnection\">\n      <a href=\"#deploymentrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestConnection</h2>\n    <p>The connection type for DeploymentRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequestedge\">[DeploymentRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequest\">[DeploymentRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestedge\">\n      <a href=\"#deploymentrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreview\">\n      <a href=\"#deploymentreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReview</h2>\n    <p>A deployment review.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>The environments approved or rejected.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#deploymentreviewstate\">DeploymentReviewState!</a></code>)</p></td>\n<td><p>The decision of the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that reviewed the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewconnection\">\n      <a href=\"#deploymentreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewConnection</h2>\n    <p>The connection type for DeploymentReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreviewedge\">[DeploymentReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreview\">[DeploymentReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewedge\">\n      <a href=\"#deploymentreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreview\">DeploymentReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewerconnection\">\n      <a href=\"#deploymentreviewerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerConnection</h2>\n    <p>The connection type for DeploymentReviewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrevieweredge\">[DeploymentReviewerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#deploymentreviewer\">[DeploymentReviewer]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrevieweredge\">\n      <a href=\"#deploymentrevieweredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#deploymentreviewer\">DeploymentReviewer</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussion\">\n      <a href=\"#discussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Discussion</h2>\n    <p>A discussion in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answer</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The comment chosen as this discussion&apos;s answer, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when a user chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The main text of the discussion post.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>category</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategory\">DiscussionCategory!</a></code>)</p></td>\n<td><p>The category for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The replies to the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number identifying this discussion within the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategory\">\n      <a href=\"#discussioncategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategory</h2>\n    <p>A category for discussions in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An emoji representing this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>This category&apos;s emoji rendered as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswerable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryconnection\">\n      <a href=\"#discussioncategoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryConnection</h2>\n    <p>The connection type for DiscussionCategory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategoryedge\">[DiscussionCategoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategory\">[DiscussionCategory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryedge\">\n      <a href=\"#discussioncategoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategory\">DiscussionCategory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncomment\">\n      <a href=\"#discussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionComment</h2>\n    <p>A comment on a discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when this replied-to comment was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion this comment was created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Has this comment been chosen as the answer of its discussion?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replies</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The threaded replies to this comment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment this comment is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMarkAsAnswer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user mark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnmarkAsAnswer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user unmark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentconnection\">\n      <a href=\"#discussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentConnection</h2>\n    <p>The connection type for DiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentedge\">[DiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">[DiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentedge\">\n      <a href=\"#discussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionconnection\">\n      <a href=\"#discussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionConnection</h2>\n    <p>The connection type for Discussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#discussionedge\">[DiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">[Discussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionedge\">\n      <a href=\"#discussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>viewerOrganizationRole</code> (<code><a href=\"/en/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The viewer&apos;s role in an organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided base repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection!</a></code>)</p></td>\n<td><p>A list of domains owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallations</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallationconnection\">EnterpriseServerInstallationConnection!</a></code>)</p></td>\n<td><p>Enterprise Server installations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>connectedOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to only return installations discovered via GitHub Connect.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseserverinstallationorder\">EnterpriseServerInstallationOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server installations returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the base repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oidcProvider</code> (<code><a href=\"/en/graphql/reference/objects#oidcprovider\">OIDCProvider</a></code>)</p></td>\n<td><p>The OIDC Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportEntitlements</code> (<code><a href=\"/en/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of members with a support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for support entitlement users returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationconnection\">\n      <a href=\"#enterpriseserverinstallationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationConnection</h2>\n    <p>The connection type for EnterpriseServerInstallation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallationedge\">[EnterpriseServerInstallationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallation\">[EnterpriseServerInstallation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationedge\">\n      <a href=\"#enterpriseserverinstallationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environment\">\n      <a href=\"#environment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Environment</h2>\n    <p>An environment.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>protectionRules</code> (<code><a href=\"/en/graphql/reference/objects#deploymentprotectionruleconnection\">DeploymentProtectionRuleConnection!</a></code>)</p></td>\n<td><p>The protection rules defined for this environment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentconnection\">\n      <a href=\"#environmentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentConnection</h2>\n    <p>The connection type for Environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#environmentedge\">[EnvironmentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#environment\">[Environment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentedge\">\n      <a href=\"#environmentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fundinglink\">\n      <a href=\"#fundinglink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FundingLink</h2>\n    <p>A funding platform link for a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/graphql/reference/enums#fundingplatform\">FundingPlatform!</a></code>)</p></td>\n<td><p>The funding platform this link is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The configured URL for this funding link.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitIpAddresses</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that users connect to for git operations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hookIpAddresses</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that service hooks are sent from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>importerIpAddresses</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that the importer connects from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pagesIpAddresses</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses for GitHub Pages&apos; A records.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItems</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of project (beta) items associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Include archived items.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>claimant</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that has claimed the data attributed to this mannequin.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacecategory\">\n      <a href=\"#marketplacecategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceCategory</h2>\n    <p>A public description of a Marketplace category.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The category&apos;s description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorks</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The technical description of how apps listed in this category work with GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The category&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryListingCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many Marketplace listings have this as their primary category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Marketplace category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondaryListingCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many Marketplace listings have this as their secondary category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the category used in its URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Marketplace category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelisting\">\n      <a href=\"#marketplacelisting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListing</h2>\n    <p>A listing in the GitHub integration marketplace.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App this listing represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing owner&apos;s company site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>configurationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for configuring access to the listing&apos;s integration or OAuth app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>configurationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for configuring access to the listing&apos;s integration or OAuth app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>documentationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s documentation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extendedDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The listing&apos;s detailed description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extendedDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s detailed description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s introductory description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s introductory description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPublishedFreeTrialPlans</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does this listing have any plans with a free trial?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTermsOfService</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does this listing have a terms of service link?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasVerifiedOwner</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the creator of the app is a verified org.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorks</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A technical description of how this app works with GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorksHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s technical description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>installationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to install the product to the viewer&apos;s account or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>installedForViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing&apos;s app has been installed for the current viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been removed from the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPaid</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the product this listing represents is available as part of a paid plan.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRejected</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been rejected by GitHub for display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnverified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for unverified display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnverifiedPending</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerificationPendingFromDraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerificationPendingFromUnverified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for verified display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL for the listing&apos;s logo image.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s full name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>normalizedShortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s very short description without a trailing period or ampersands.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pricingUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s detailed pricing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryCategory</code> (<code><a href=\"/en/graphql/reference/objects#marketplacecategory\">MarketplaceCategory!</a></code>)</p></td>\n<td><p>The category that best describes the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyPolicyUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>URL to the listing&apos;s privacy policy, may return an empty string for listings that do not require a privacy policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>screenshotUrls</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]!</a></code>)</p></td>\n<td><p>The URLs for the listing&apos;s screenshots.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondaryCategory</code> (<code><a href=\"/en/graphql/reference/objects#marketplacecategory\">MarketplaceCategory</a></code>)</p></td>\n<td><p>An alternate category that describes the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s very short description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the listing used in its URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s status page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An email address for support for this listing&apos;s app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Either a URL or an email address for support for this listing&apos;s app, may\nreturn an empty string for listings that do not require a support URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>termsOfServiceUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s terms of service.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAddPlans</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer add plans for this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApprove</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer approve this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelist</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer delist this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEditCategories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit the primary and secondary category of this\nMarketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEditPlans</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit the plans for this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanRedraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReject</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanRequestApproval</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasPurchased</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current user has an active subscription to this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasPurchasedForAllOrganizations</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsListingAdmin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the current viewer role allow them to administer this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelistingconnection\">\n      <a href=\"#marketplacelistingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListingConnection</h2>\n    <p>Look up Marketplace Listings.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#marketplacelistingedge\">[MarketplaceListingEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#marketplacelisting\">[MarketplaceListing]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelistingedge\">\n      <a href=\"#marketplacelistingedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListingEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#marketplacelisting\">MarketplaceListing</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"migrationsource\">\n      <a href=\"#migrationsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MigrationSource</h2>\n    <p>An Octoshift migration source.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oidcprovider\">\n      <a href=\"#oidcprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OIDCProvider</h2>\n    <p>An OIDC identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>providerType</code> (<code><a href=\"/en/graphql/reference/enums#oidcprovidertype\">OIDCProviderType!</a></code>)</p></td>\n<td><p>The OIDC identity provider type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tenantId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the tenant this provider is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection</a></code>)</p></td>\n<td><p>A list of domains owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseOwners</code> (<code><a href=\"/en/graphql/reference/objects#organizationenterpriseownerconnection\">OrganizationEnterpriseOwnerConnection!</a></code>)</p></td>\n<td><p>A list of owners of the organization&apos;s enterprise account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#orgenterpriseownerorder\">OrgEnterpriseOwnerOrder</a></code>)</p>\n<p>Ordering options for enterprise owners returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationRole</code> (<code><a href=\"/en/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The organization role to filter by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>estimatedNextSponsorsPayoutInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasSponsorsListing</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if this user/organization has a GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoredBy</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the given account is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>accountLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The target account&apos;s login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoringViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsored by this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the organization has verified its profile email and website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanForkPrivateRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Members can fork private repositories in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyEstimatedSponsorsIncomeInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this organization is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryMigrations</code> (<code><a href=\"/en/graphql/reference/objects#repositorymigrationconnection\">RepositoryMigrationConnection!</a></code>)</p></td>\n<td><p>A list of all repository migrations for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositorymigrationorder\">RepositoryMigrationOrder</a></code>)</p>\n<p>Ordering options for repository migrations returned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>state</code> (<code><a href=\"/en/graphql/reference/enums#migrationstate\">MigrationState</a></code>)</p>\n<p>Filter repository migrations by state.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsoring</code> (<code><a href=\"/en/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of users and organizations this entity is sponsoring.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for the users and organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsors</code> (<code><a href=\"/en/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of sponsors for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for sponsors returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tierId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsActivities</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivityconnection\">SponsorsActivityConnection!</a></code>)</p></td>\n<td><p>Events involving this sponsorable, such as new sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorsactivityorder\">SponsorsActivityOrder</a></code>)</p>\n<p>Ordering options for activity returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>period</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsactivityperiod\">SponsorsActivityPeriod</a></code>)</p>\n<p>Filter activities returned to only those that occurred in a given time range.</p>\n<p>The default value is <code>MONTH</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/graphql/reference/objects#sponsorslisting\">SponsorsListing</a></code>)</p></td>\n<td><p>The GitHub Sponsors listing for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsor</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you&apos;re the sponsor. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsorable</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you&apos;re receiving. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipNewsletters</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletterconnection\">SponsorshipNewsletterConnection!</a></code>)</p></td>\n<td><p>List of sponsorship updates sent from this sponsorable to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshipnewsletterorder\">SponsorshipNewsletterOrder</a></code>)</p>\n<p>Ordering options for sponsorship updates returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSponsor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to sponsor this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsSponsoring</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>A list of organizations managed by an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseownerconnection\">\n      <a href=\"#organizationenterpriseownerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationenterpriseowneredge\">[OrganizationEnterpriseOwnerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseowneredge\">\n      <a href=\"#organizationenterpriseowneredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerEdge</h2>\n    <p>An enterprise owner in the context of an organization that is part of the enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role of the owner with respect to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"package\">\n      <a href=\"#package\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Package</h2>\n    <p>Information for an uploaded package.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>latestVersion</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find the latest version for the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageType</code> (<code><a href=\"/en/graphql/reference/enums#packagetype\">PackageType!</a></code>)</p></td>\n<td><p>Identifies the type of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this package belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/graphql/reference/objects#packagestatistics\">PackageStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find package version by version string.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>version</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The package version.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>versions</code> (<code><a href=\"/en/graphql/reference/objects#packageversionconnection\">PackageVersionConnection!</a></code>)</p></td>\n<td><p>list of versions for this package.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packageversionorder\">PackageVersionOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageconnection\">\n      <a href=\"#packageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageConnection</h2>\n    <p>The connection type for Package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#packageedge\">[PackageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#package\">[Package]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageedge\">\n      <a href=\"#packageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefile\">\n      <a href=\"#packagefile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFile</h2>\n    <p>A file in a package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>md5</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>MD5 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Name of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersion</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The package version this file belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha1</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA1 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha256</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA256 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Size of the file in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to download the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileconnection\">\n      <a href=\"#packagefileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileConnection</h2>\n    <p>The connection type for PackageFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#packagefileedge\">[PackageFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#packagefile\">[PackageFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileedge\">\n      <a href=\"#packagefileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#packagefile\">PackageFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagestatistics\">\n      <a href=\"#packagestatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageStatistics</h2>\n    <p>Represents a object that contains package activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagetag\">\n      <a href=\"#packagetag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageTag</h2>\n    <p>A version tag contains the mapping between a tag name and a version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the tag name of the version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Version that the tag is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversion\">\n      <a href=\"#packageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersion</h2>\n    <p>Information about a specific package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/graphql/reference/objects#packagefileconnection\">PackageFileConnection!</a></code>)</p></td>\n<td><p>List of files associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packagefileorder\">PackageFileOrder</a></code>)</p>\n<p>Ordering of the returned package files.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The package associated with this version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The platform this version was built for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preRelease</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this version is a pre-release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readme</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The README of this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The release associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/graphql/reference/objects#packageversionstatistics\">PackageVersionStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The package version summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The version string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionconnection\">\n      <a href=\"#packageversionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionConnection</h2>\n    <p>The connection type for PackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#packageversionedge\">[PackageVersionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">[PackageVersion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionedge\">\n      <a href=\"#packageversionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionstatistics\">\n      <a href=\"#packageversionstatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionStatistics</h2>\n    <p>Represents a object that contains package version activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussion\">\n      <a href=\"#pinneddiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussion</h2>\n    <p>A Pinned Discussion is a discussion pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion!</a></code>)</p></td>\n<td><p>The discussion that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gradientStopColors</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Color stops of the chosen gradient.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/enums#pinneddiscussionpattern\">PinnedDiscussionPattern!</a></code>)</p></td>\n<td><p>Background texture pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preconfiguredGradient</code> (<code><a href=\"/en/graphql/reference/enums#pinneddiscussiongradient\">PinnedDiscussionGradient</a></code>)</p></td>\n<td><p>Preconfigured background gradient option.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionconnection\">\n      <a href=\"#pinneddiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionConnection</h2>\n    <p>The connection type for PinnedDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pinneddiscussionedge\">[PinnedDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pinneddiscussion\">[PinnedDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionedge\">\n      <a href=\"#pinneddiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pinneddiscussion\">PinnedDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnext\">\n      <a href=\"#projectnext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNext</h2>\n    <p>New projects that manage issues, pull requests and drafts using tables and boards.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if the project is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fields</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfieldconnection\">ProjectNextFieldConnection!</a></code>)</p></td>\n<td><p>List of fields in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of items in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if the project is public.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>The repositories the project is linked to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s short description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextconnection\">\n      <a href=\"#projectnextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextConnection</h2>\n    <p>The connection type for ProjectNext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectnextedge\">[ProjectNextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">[ProjectNext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextedge\">\n      <a href=\"#projectnextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfield\">\n      <a href=\"#projectnextfield\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextField</h2>\n    <p>A field inside a project.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project field&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settings</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The field&apos;s settings.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfieldconnection\">\n      <a href=\"#projectnextfieldconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextFieldConnection</h2>\n    <p>The connection type for ProjectNextField.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfieldedge\">[ProjectNextFieldEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfield\">[ProjectNextField]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfieldedge\">\n      <a href=\"#projectnextfieldedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextFieldEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfield\">ProjectNextField</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitem\">\n      <a href=\"#projectnextitem\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItem</h2>\n    <p>An item within a new Project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/unions#projectnextitemcontent\">ProjectNextItemContent</a></code>)</p></td>\n<td><p>The content of the referenced issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fieldValues</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemfieldvalueconnection\">ProjectNextItemFieldValueConnection!</a></code>)</p></td>\n<td><p>List of field values.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the item is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext!</a></code>)</p></td>\n<td><p>The project that contains this item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemconnection\">\n      <a href=\"#projectnextitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemConnection</h2>\n    <p>The connection type for ProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemedge\">[ProjectNextItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitem\">[ProjectNextItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemedge\">\n      <a href=\"#projectnextitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitem\">ProjectNextItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalue\">\n      <a href=\"#projectnextitemfieldvalue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValue</h2>\n    <p>An value of a field in an item of a new Project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectField</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfield\">ProjectNextField!</a></code>)</p></td>\n<td><p>The project field that contains this value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectItem</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitem\">ProjectNextItem!</a></code>)</p></td>\n<td><p>The project item that contains this value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The value of a field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalueconnection\">\n      <a href=\"#projectnextitemfieldvalueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValueConnection</h2>\n    <p>The connection type for ProjectNextItemFieldValue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemfieldvalueedge\">[ProjectNextItemFieldValueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemfieldvalue\">[ProjectNextItemFieldValue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalueedge\">\n      <a href=\"#projectnextitemfieldvalueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemfieldvalue\">ProjectNextItemFieldValue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLinkedOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Return only manually linked Issues.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItems</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of project (beta) items associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Include archived items.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>Identifies the pull request title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The latest review given from the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReviewRequest</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The person who has requested the viewer for review on this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttemplate\">\n      <a href=\"#pullrequesttemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTemplate</h2>\n    <p>A repository pull request template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The filename of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the template belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactors</code> (<code><a href=\"/en/graphql/reference/objects#reactorconnection\">ReactorConnection!</a></code>)</p></td>\n<td><p>Reactors to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>users</code> is deprecated.</p><p>Reactors can now be mannequins, bots, and organizations. Use the <code>reactors</code> field instead. Removal on 2021-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactorconnection\">\n      <a href=\"#reactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorConnection</h2>\n    <p>The connection type for Reactor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reactoredge\">[ReactorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#reactor\">[Reactor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactoredge\">\n      <a href=\"#reactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorEdge</h2>\n    <p>Represents an author of a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#reactor\">Reactor!</a></code>)</p></td>\n<td><p>The author of the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerAllowedToDismissReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the viewer allowed to dismiss reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentions</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection</a></code>)</p></td>\n<td><p>A list of users mentioned in the release description.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not Auto-merge can be enabled on pull requests in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeowners</code> (<code><a href=\"/en/graphql/reference/objects#repositorycodeowners\">RepositoryCodeowners</a></code>)</p></td>\n<td><p>Information extracted from the repository&apos;s <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The ref name used to return the associated <code>CODEOWNERS</code> file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependencyGraphManifests</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphmanifestconnection\">DependencyGraphManifestConnection</a></code>)</p></td>\n<td><p>A list of dependency manifests contained in the repository.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>dependencyGraphManifests</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>dependenciesAfter</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Cursor to paginate dependencies.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>dependenciesFirst</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Number of dependencies to fetch.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>withDependencies</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Flag to scope to only manifests with dependencies.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>Returns a single discussion from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the discussion to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCategories</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategoryconnection\">DiscussionCategoryConnection!</a></code>)</p></td>\n<td><p>A list of discussion categories that are available in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterByAssignable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by categories that are assignable by the viewer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>categoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Only include discussions that belong to the category with this ID.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>Returns a single active environment from the current repository by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the environment to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>A list of environments that are in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository allows forks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fundingLinks</code> (<code><a href=\"/en/graphql/reference/objects#fundinglink\">[FundingLink!]!</a></code>)</p></td>\n<td><p>The funding links for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedDiscussions</code> (<code><a href=\"/en/graphql/reference/objects#pinneddiscussionconnection\">PinnedDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been pinned in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Finds and returns the Project (beta) according to the provided Project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The ProjectNext number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>List of projects (beta) linked to this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for linked to the repo.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned project (beta) objects.</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestTemplates</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttemplate\">[PullRequestTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of pull request templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvulnerabilityalertstate\">[RepositoryVulnerabilityAlertState!]</a></code>)</p>\n<p>Filter by the state of the alert.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeowners\">\n      <a href=\"#repositorycodeowners\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeowners</h2>\n    <p>Information extracted from a repository&apos;s <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>errors</code> (<code><a href=\"/en/graphql/reference/objects#repositorycodeownerserror\">[RepositoryCodeownersError!]!</a></code>)</p></td>\n<td><p>Any problems that were encountered while parsing the <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeownerserror\">\n      <a href=\"#repositorycodeownerserror\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeownersError</h2>\n    <p>An error in a <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The column number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short string describing the type of error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A complete description of the error, combining information from other fields.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to the file when the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the line where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A suggestion of how to fix the error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinteractionability\">\n      <a href=\"#repositoryinteractionability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInteractionAbility</h2>\n    <p>Repository interaction limit that applies to this object.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time the currently active limit expires.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The current limit that is enabled on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimitorigin\">RepositoryInteractionLimitOrigin!</a></code>)</p></td>\n<td><p>The origin of the currently active interaction limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigration\">\n      <a href=\"#repositorymigration\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigration</h2>\n    <p>An Octoshift repository migration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#migration\">Migration</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The Octoshift migration flag to continue on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>failureReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the migration failed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>migrationSource</code> (<code><a href=\"/en/graphql/reference/objects#migrationsource\">MigrationSource!</a></code>)</p></td>\n<td><p>The Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#migrationstate\">MigrationState!</a></code>)</p></td>\n<td><p>The Octoshift migration state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationconnection\">\n      <a href=\"#repositorymigrationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationConnection</h2>\n    <p>The connection type for RepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositorymigrationedge\">[RepositoryMigrationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repositorymigration\">[RepositoryMigration]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationedge\">\n      <a href=\"#repositorymigrationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationEdge</h2>\n    <p>Represents a repository migration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repositorymigration\">RepositoryMigration</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was marked as fixed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert fixed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the alert number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvulnerabilityalertstate\">RepositoryVulnerabilityAlertState!</a></code>)</p></td>\n<td><p>Identifies the state of the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckdescription\">\n      <a href=\"#requiredstatuscheckdescription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckDescription</h2>\n    <p>Represents a required status check for a protected branch, but not any specific run of that check.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The App that must provide this status in order for it to be accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of discussions that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#securityvulnerabilityorder\">SecurityVulnerabilityOrder</a></code>)</p>\n<p>Ordering options for the returned topics.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorconnection\">\n      <a href=\"#sponsorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorConnection</h2>\n    <p>The connection type for Sponsor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsoredge\">[SponsorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#sponsor\">[Sponsor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsoredge\">\n      <a href=\"#sponsoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorEdge</h2>\n    <p>Represents a user or organization who is sponsoring someone in GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableitemconnection\">\n      <a href=\"#sponsorableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableItemConnection</h2>\n    <p>The connection type for SponsorableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorableitemedge\">[SponsorableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#sponsorableitem\">[SponsorableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableitemedge\">\n      <a href=\"#sponsorableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#sponsorableitem\">SponsorableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivity\">\n      <a href=\"#sponsorsactivity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivity</h2>\n    <p>An event related to sponsorship activity.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsactivityaction\">SponsorsActivityAction!</a></code>)</p></td>\n<td><p>What action this activity indicates took place.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSponsorsTier</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The tier that the sponsorship used to use, for tier change events.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization who triggered this activity and was/is sponsoring the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The user or organization that is being sponsored, the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsTier</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The associated sponsorship tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timestamp</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The timestamp of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityconnection\">\n      <a href=\"#sponsorsactivityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityConnection</h2>\n    <p>The connection type for SponsorsActivity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivityedge\">[SponsorsActivityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivity\">[SponsorsActivity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityedge\">\n      <a href=\"#sponsorsactivityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivity\">SponsorsActivity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsgoal\">\n      <a href=\"#sponsorsgoal\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsGoal</h2>\n    <p>A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of the goal from the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsgoalkind\">SponsorsGoalKind!</a></code>)</p></td>\n<td><p>What the objective of this goal is.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>percentComplete</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The percentage representing how complete this goal is, between 0-100.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetValue</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A brief summary of the kind and target value of this goal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorslisting\">\n      <a href=\"#sponsorslisting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsListing</h2>\n    <p>A GitHub Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeGoal</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsgoal\">SponsorsGoal</a></code>)</p></td>\n<td><p>The current goal the maintainer is trying to reach with GitHub Sponsors, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full description of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The full description of the listing rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s full name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nextPayoutDate</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>A future date on which this listing is eligible to receive a payout.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short description of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity this listing represents who can be sponsored on GitHub Sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tiers</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstierconnection\">SponsorsTierConnection</a></code>)</p></td>\n<td><p>The published tiers for this GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorstierorder\">SponsorsTierOrder</a></code>)</p>\n<p>Ordering options for Sponsors tiers returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstier\">\n      <a href=\"#sponsorstier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTier</h2>\n    <p>A GitHub Sponsors tier associated with a GitHub Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminInfo</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstieradmininfo\">SponsorsTierAdminInfo</a></code>)</p></td>\n<td><p>SponsorsTier information only visible to users that can administer the associated Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closestLesserValueTier</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>Get a different tier for this tier&apos;s maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier&apos;s without going over.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The description of the tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The tier description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCustomAmount</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOneTime</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this tier is only for use with one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyPriceInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How much this tier costs per month in cents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyPriceInDollars</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How much this tier costs per month in USD.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/graphql/reference/objects#sponsorslisting\">SponsorsListing!</a></code>)</p></td>\n<td><p>The sponsors listing that this tier belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstieradmininfo\">\n      <a href=\"#sponsorstieradmininfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierAdminInfo</h2>\n    <p>SponsorsTier information only visible to users that can administer the associated Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>sponsorships</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>The sponsorships associated with this tier.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstierconnection\">\n      <a href=\"#sponsorstierconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierConnection</h2>\n    <p>The connection type for SponsorsTier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstieredge\">[SponsorsTierEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">[SponsorsTier]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstieredge\">\n      <a href=\"#sponsorstieredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorship\">\n      <a href=\"#sponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Sponsorship</h2>\n    <p>A sponsorship relationship between a sponsor and a maintainer.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOneTimePayment</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this sponsorship represents a one-time payment versus a recurring sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsorOptedIntoEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>maintainer</code> is deprecated.</p><p><code>Sponsorship.maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead. Removal on 2020-04-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy!</a></code>)</p></td>\n<td><p>The privacy level for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>sponsor</code> is deprecated.</p><p><code>Sponsorship.sponsor</code> will be removed. Use <code>Sponsorship.sponsorEntity</code> instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorEntity</code> (<code><a href=\"/en/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization that is sponsoring, if you have permission to view them.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tier</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The associated sponsorship tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tierSelectedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the current tier was chosen for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipconnection\">\n      <a href=\"#sponsorshipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipConnection</h2>\n    <p>The connection type for Sponsorship.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipedge\">[SponsorshipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">[Sponsorship]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRecurringMonthlyPriceInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRecurringMonthlyPriceInDollars</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipedge\">\n      <a href=\"#sponsorshipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletter\">\n      <a href=\"#sponsorshipnewsletter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletter</h2>\n    <p>An update sent to sponsors of a user or organization on GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the newsletter, the message the sponsorable wanted to give.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublished</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the newsletter has been made available to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The user or organization this newsletter is from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The subject of the newsletter, what it&apos;s about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletterconnection\">\n      <a href=\"#sponsorshipnewsletterconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterConnection</h2>\n    <p>The connection type for SponsorshipNewsletter.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletteredge\">[SponsorshipNewsletterEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletter\">[SponsorshipNewsletter]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletteredge\">\n      <a href=\"#sponsorshipnewsletteredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletter\">SponsorshipNewsletter</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sponsorableOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canReceiveOrganizationEmailsWhenNotificationsRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Could this user receive email notifications, if the organization had notification restrictions enabled?.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to check.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>estimatedNextSponsorsPayoutInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasSponsorsListing</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if this user/organization has a GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFollowingViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is following the viewer. Inverse of viewer_is_following.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoredBy</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the given account is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>accountLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The target account&apos;s login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoringViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsored by this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyEstimatedSponsorsIncomeInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsoring</code> (<code><a href=\"/en/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of users and organizations this entity is sponsoring.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for the users and organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsors</code> (<code><a href=\"/en/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of sponsors for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for sponsors returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tierId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsActivities</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivityconnection\">SponsorsActivityConnection!</a></code>)</p></td>\n<td><p>Events involving this sponsorable, such as new sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorsactivityorder\">SponsorsActivityOrder</a></code>)</p>\n<p>Ordering options for activity returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>period</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsactivityperiod\">SponsorsActivityPeriod</a></code>)</p>\n<p>Filter activities returned to only those that occurred in a given time range.</p>\n<p>The default value is <code>MONTH</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/graphql/reference/objects#sponsorslisting\">SponsorsListing</a></code>)</p></td>\n<td><p>The GitHub Sponsors listing for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsor</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you&apos;re the sponsor. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsorable</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you&apos;re receiving. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipNewsletters</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletterconnection\">SponsorshipNewsletterConnection!</a></code>)</p></td>\n<td><p>List of sponsorship updates sent from this sponsorable to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshipnewsletterorder\">SponsorshipNewsletterOrder</a></code>)</p>\n<p>Ordering options for sponsorship updates returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSponsor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to sponsor this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer. Inverse of is_following_viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsSponsoring</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomain\">\n      <a href=\"#verifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomain</h2>\n    <p>A domain that can be verified or approved for an organization or an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dnsHostName</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The DNS host name that should be used for verification.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The unicode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundHostName</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected host name was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundVerificationToken</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected verification token was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isApproved</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is approved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequiredForPolicyEnforcement</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this domain is required to exist for an organization or enterprise policy to be enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner!</a></code>)</p></td>\n<td><p>The owner of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>punycodeEncodedDomain</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The punycode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tokenExpirationTime</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the current verification token will expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current verification token for the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainconnection\">\n      <a href=\"#verifiabledomainconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainConnection</h2>\n    <p>The connection type for VerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomainedge\">[VerifiableDomainEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomain\">[VerifiableDomain]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainedge\">\n      <a href=\"#verifiabledomainedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflow\">\n      <a href=\"#workflow\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Workflow</h2>\n    <p>A workflow contains meta information about an Actions workflow file.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflowrun\">\n      <a href=\"#workflowrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>WorkflowRun</h2>\n    <p>A workflow run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite this workflow run belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentReviews</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreviewconnection\">DeploymentReviewConnection!</a></code>)</p></td>\n<td><p>The log of deployment reviews.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequests</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequestconnection\">DeploymentRequestConnection!</a></code>)</p></td>\n<td><p>The pending deployment requests of all check runs in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>runNumber</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number that uniquely identifies this workflow run in its parent workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflow</code> (<code><a href=\"/en/graphql/reference/objects#workflow\">Workflow!</a></code>)</p></td>\n<td><p>The workflow executed in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
+    "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses of the app.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushAllowances</code> (<code><a href=\"/en/graphql/reference/objects#bypassforcepushallowanceconnection\">BypassForcePushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to force push for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestAllowances</code> (<code><a href=\"/en/graphql/reference/objects#bypasspullrequestallowanceconnection\">BypassPullRequestAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to bypass PRs for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/graphql/reference/objects#requiredstatuscheckdescription\">[RequiredStatusCheckDescription!]</a></code>)</p></td>\n<td><p>List of required status checks that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowance\">\n      <a href=\"#bypassforcepushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowance</h2>\n    <p>A team or user who has the ability to bypass a force push requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceconnection\">\n      <a href=\"#bypassforcepushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceConnection</h2>\n    <p>The connection type for BypassForcePushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#bypassforcepushallowanceedge\">[BypassForcePushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#bypassforcepushallowance\">[BypassForcePushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceedge\">\n      <a href=\"#bypassforcepushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#bypassforcepushallowance\">BypassForcePushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowance\">\n      <a href=\"#bypasspullrequestallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowance</h2>\n    <p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceconnection\">\n      <a href=\"#bypasspullrequestallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceConnection</h2>\n    <p>The connection type for BypassPullRequestAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#bypasspullrequestallowanceedge\">[BypassPullRequestAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#bypasspullrequestallowance\">[BypassPullRequestAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceedge\">\n      <a href=\"#bypasspullrequestallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#bypasspullrequestallowance\">BypassPullRequestAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The corresponding deployment for this job, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequest</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>Information about a pending deployment, if any, in this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>steps</code> (<code><a href=\"/en/graphql/reference/objects#checkstepconnection\">CheckStepConnection</a></code>)</p></td>\n<td><p>The check run&apos;s steps.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Step number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstep\">\n      <a href=\"#checkstep\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStep</h2>\n    <p>A single check step.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check step on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The step&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The index of the step in the list of steps of the parent check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondsToCompletion</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of seconds to completion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepconnection\">\n      <a href=\"#checkstepconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepConnection</h2>\n    <p>The connection type for CheckStep.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#checkstepedge\">[CheckStepEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#checkstep\">[CheckStep]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepedge\">\n      <a href=\"#checkstepedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#checkstep\">CheckStep</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who triggered the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRun</code> (<code><a href=\"/en/graphql/reference/objects#workflowrun\">WorkflowRun</a></code>)</p></td>\n<td><p>The workflow run associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertedtodiscussionevent\">\n      <a href=\"#convertedtodiscussionevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedToDiscussionEvent</h2>\n    <p>Represents a<code>converted_to_discussion</code>event on a given issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that the issue was converted into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependency\">\n      <a href=\"#dependencygraphdependency\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependency</h2>\n    <p>A dependency manifest entry.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependency</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasDependencies</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the dependency itself have dependencies?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageLabel</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The original name of the package, as it appears in the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageManager</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The dependency package manager.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository containing the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requirements</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The dependency version requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependencyconnection\">\n      <a href=\"#dependencygraphdependencyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependencyConnection</h2>\n    <p>The connection type for DependencyGraphDependency.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependencyConnection</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphdependencyedge\">[DependencyGraphDependencyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphdependency\">[DependencyGraphDependency]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependencyedge\">\n      <a href=\"#dependencygraphdependencyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependencyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependencyEdge</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphdependency\">DependencyGraphDependency</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifest\">\n      <a href=\"#dependencygraphmanifest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifest</h2>\n    <p>Dependency manifest for a repository.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifest</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>blobPath</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to view the manifest file blob.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependencies</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphdependencyconnection\">DependencyGraphDependencyConnection</a></code>)</p></td>\n<td><p>A list of manifest dependencies.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependenciesCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of dependencies listed in the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>exceedsMaxSize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the manifest too big to parse?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Fully qualified manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parseable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Were we able to parse the manifest?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifestconnection\">\n      <a href=\"#dependencygraphmanifestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifestConnection</h2>\n    <p>The connection type for DependencyGraphManifest.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifestConnection</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphmanifestedge\">[DependencyGraphManifestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphmanifest\">[DependencyGraphManifest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifestedge\">\n      <a href=\"#dependencygraphmanifestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifestEdge</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphmanifest\">DependencyGraphManifest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionrule\">\n      <a href=\"#deploymentprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRule</h2>\n    <p>A protection rule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeout</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The timeout in minutes for this protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/enums#deploymentprotectionruletype\">DeploymentProtectionRuleType!</a></code>)</p></td>\n<td><p>The type of protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleconnection\">\n      <a href=\"#deploymentprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleConnection</h2>\n    <p>The connection type for DeploymentProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentprotectionruleedge\">[DeploymentProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploymentprotectionrule\">[DeploymentProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleedge\">\n      <a href=\"#deploymentprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploymentprotectionrule\">DeploymentProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequest\">\n      <a href=\"#deploymentrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequest</h2>\n    <p>A request to deploy a workflow run to an environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>currentUserCanApprove</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can approve the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/objects#environment\">Environment!</a></code>)</p></td>\n<td><p>The target environment of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimerStartedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestconnection\">\n      <a href=\"#deploymentrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestConnection</h2>\n    <p>The connection type for DeploymentRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequestedge\">[DeploymentRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequest\">[DeploymentRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestedge\">\n      <a href=\"#deploymentrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreview\">\n      <a href=\"#deploymentreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReview</h2>\n    <p>A deployment review.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>The environments approved or rejected.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#deploymentreviewstate\">DeploymentReviewState!</a></code>)</p></td>\n<td><p>The decision of the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that reviewed the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewconnection\">\n      <a href=\"#deploymentreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewConnection</h2>\n    <p>The connection type for DeploymentReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreviewedge\">[DeploymentReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreview\">[DeploymentReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewedge\">\n      <a href=\"#deploymentreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreview\">DeploymentReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewerconnection\">\n      <a href=\"#deploymentreviewerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerConnection</h2>\n    <p>The connection type for DeploymentReviewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrevieweredge\">[DeploymentReviewerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#deploymentreviewer\">[DeploymentReviewer]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrevieweredge\">\n      <a href=\"#deploymentrevieweredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#deploymentreviewer\">DeploymentReviewer</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussion\">\n      <a href=\"#discussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Discussion</h2>\n    <p>A discussion in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answer</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The comment chosen as this discussion&apos;s answer, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when a user chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The main text of the discussion post.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>category</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategory\">DiscussionCategory!</a></code>)</p></td>\n<td><p>The category for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The replies to the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number identifying this discussion within the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategory\">\n      <a href=\"#discussioncategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategory</h2>\n    <p>A category for discussions in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An emoji representing this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>This category&apos;s emoji rendered as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswerable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryconnection\">\n      <a href=\"#discussioncategoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryConnection</h2>\n    <p>The connection type for DiscussionCategory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategoryedge\">[DiscussionCategoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategory\">[DiscussionCategory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryedge\">\n      <a href=\"#discussioncategoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategory\">DiscussionCategory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncomment\">\n      <a href=\"#discussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionComment</h2>\n    <p>A comment on a discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when this replied-to comment was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion this comment was created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Has this comment been chosen as the answer of its discussion?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replies</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The threaded replies to this comment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment this comment is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMarkAsAnswer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user mark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnmarkAsAnswer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user unmark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentconnection\">\n      <a href=\"#discussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentConnection</h2>\n    <p>The connection type for DiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentedge\">[DiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">[DiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentedge\">\n      <a href=\"#discussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionconnection\">\n      <a href=\"#discussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionConnection</h2>\n    <p>The connection type for Discussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#discussionedge\">[DiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">[Discussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionedge\">\n      <a href=\"#discussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>viewerOrganizationRole</code> (<code><a href=\"/en/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The viewer&apos;s role in an organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided base repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection!</a></code>)</p></td>\n<td><p>A list of domains owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallations</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallationconnection\">EnterpriseServerInstallationConnection!</a></code>)</p></td>\n<td><p>Enterprise Server installations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>connectedOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to only return installations discovered via GitHub Connect.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseserverinstallationorder\">EnterpriseServerInstallationOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server installations returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the base repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oidcProvider</code> (<code><a href=\"/en/graphql/reference/objects#oidcprovider\">OIDCProvider</a></code>)</p></td>\n<td><p>The OIDC Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportEntitlements</code> (<code><a href=\"/en/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of members with a support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for support entitlement users returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationconnection\">\n      <a href=\"#enterpriseserverinstallationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationConnection</h2>\n    <p>The connection type for EnterpriseServerInstallation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallationedge\">[EnterpriseServerInstallationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallation\">[EnterpriseServerInstallation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationedge\">\n      <a href=\"#enterpriseserverinstallationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environment\">\n      <a href=\"#environment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Environment</h2>\n    <p>An environment.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>protectionRules</code> (<code><a href=\"/en/graphql/reference/objects#deploymentprotectionruleconnection\">DeploymentProtectionRuleConnection!</a></code>)</p></td>\n<td><p>The protection rules defined for this environment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentconnection\">\n      <a href=\"#environmentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentConnection</h2>\n    <p>The connection type for Environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#environmentedge\">[EnvironmentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#environment\">[Environment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentedge\">\n      <a href=\"#environmentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fundinglink\">\n      <a href=\"#fundinglink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FundingLink</h2>\n    <p>A funding platform link for a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/graphql/reference/enums#fundingplatform\">FundingPlatform!</a></code>)</p></td>\n<td><p>The funding platform this link is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The configured URL for this funding link.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitIpAddresses</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that users connect to for git operations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hookIpAddresses</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that service hooks are sent from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>importerIpAddresses</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that the importer connects from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pagesIpAddresses</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses for GitHub Pages&apos; A records.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItems</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of project (beta) items associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Include archived items.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>claimant</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that has claimed the data attributed to this mannequin.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacecategory\">\n      <a href=\"#marketplacecategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceCategory</h2>\n    <p>A public description of a Marketplace category.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The category&apos;s description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorks</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The technical description of how apps listed in this category work with GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The category&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryListingCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many Marketplace listings have this as their primary category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Marketplace category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondaryListingCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many Marketplace listings have this as their secondary category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the category used in its URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Marketplace category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelisting\">\n      <a href=\"#marketplacelisting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListing</h2>\n    <p>A listing in the GitHub integration marketplace.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App this listing represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing owner&apos;s company site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>configurationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for configuring access to the listing&apos;s integration or OAuth app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>configurationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for configuring access to the listing&apos;s integration or OAuth app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>documentationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s documentation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extendedDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The listing&apos;s detailed description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extendedDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s detailed description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s introductory description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s introductory description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPublishedFreeTrialPlans</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does this listing have any plans with a free trial?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTermsOfService</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does this listing have a terms of service link?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasVerifiedOwner</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the creator of the app is a verified org.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorks</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A technical description of how this app works with GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorksHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s technical description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>installationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to install the product to the viewer&apos;s account or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>installedForViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing&apos;s app has been installed for the current viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been removed from the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPaid</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the product this listing represents is available as part of a paid plan.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRejected</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been rejected by GitHub for display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnverified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for unverified display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnverifiedPending</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerificationPendingFromDraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerificationPendingFromUnverified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for verified display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL for the listing&apos;s logo image.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s full name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>normalizedShortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s very short description without a trailing period or ampersands.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pricingUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s detailed pricing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryCategory</code> (<code><a href=\"/en/graphql/reference/objects#marketplacecategory\">MarketplaceCategory!</a></code>)</p></td>\n<td><p>The category that best describes the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyPolicyUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>URL to the listing&apos;s privacy policy, may return an empty string for listings that do not require a privacy policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>screenshotUrls</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]!</a></code>)</p></td>\n<td><p>The URLs for the listing&apos;s screenshots.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondaryCategory</code> (<code><a href=\"/en/graphql/reference/objects#marketplacecategory\">MarketplaceCategory</a></code>)</p></td>\n<td><p>An alternate category that describes the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s very short description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the listing used in its URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s status page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An email address for support for this listing&apos;s app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Either a URL or an email address for support for this listing&apos;s app, may\nreturn an empty string for listings that do not require a support URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>termsOfServiceUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s terms of service.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAddPlans</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer add plans for this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApprove</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer approve this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelist</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer delist this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEditCategories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit the primary and secondary category of this\nMarketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEditPlans</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit the plans for this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanRedraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReject</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanRequestApproval</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasPurchased</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current user has an active subscription to this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasPurchasedForAllOrganizations</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsListingAdmin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the current viewer role allow them to administer this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelistingconnection\">\n      <a href=\"#marketplacelistingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListingConnection</h2>\n    <p>Look up Marketplace Listings.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#marketplacelistingedge\">[MarketplaceListingEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#marketplacelisting\">[MarketplaceListing]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelistingedge\">\n      <a href=\"#marketplacelistingedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListingEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#marketplacelisting\">MarketplaceListing</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"migrationsource\">\n      <a href=\"#migrationsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MigrationSource</h2>\n    <p>An Octoshift migration source.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oidcprovider\">\n      <a href=\"#oidcprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OIDCProvider</h2>\n    <p>An OIDC identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>providerType</code> (<code><a href=\"/en/graphql/reference/enums#oidcprovidertype\">OIDCProviderType!</a></code>)</p></td>\n<td><p>The OIDC identity provider type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tenantId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the tenant this provider is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection</a></code>)</p></td>\n<td><p>A list of domains owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseOwners</code> (<code><a href=\"/en/graphql/reference/objects#organizationenterpriseownerconnection\">OrganizationEnterpriseOwnerConnection!</a></code>)</p></td>\n<td><p>A list of owners of the organization&apos;s enterprise account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#orgenterpriseownerorder\">OrgEnterpriseOwnerOrder</a></code>)</p>\n<p>Ordering options for enterprise owners returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationRole</code> (<code><a href=\"/en/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The organization role to filter by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>estimatedNextSponsorsPayoutInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasSponsorsListing</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if this user/organization has a GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoredBy</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the given account is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>accountLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The target account&apos;s login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoringViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsored by this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the organization has verified its profile email and website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanForkPrivateRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Members can fork private repositories in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyEstimatedSponsorsIncomeInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this organization is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryMigrations</code> (<code><a href=\"/en/graphql/reference/objects#repositorymigrationconnection\">RepositoryMigrationConnection!</a></code>)</p></td>\n<td><p>A list of all repository migrations for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositorymigrationorder\">RepositoryMigrationOrder</a></code>)</p>\n<p>Ordering options for repository migrations returned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>state</code> (<code><a href=\"/en/graphql/reference/enums#migrationstate\">MigrationState</a></code>)</p>\n<p>Filter repository migrations by state.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsoring</code> (<code><a href=\"/en/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of users and organizations this entity is sponsoring.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for the users and organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsors</code> (<code><a href=\"/en/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of sponsors for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for sponsors returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tierId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsActivities</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivityconnection\">SponsorsActivityConnection!</a></code>)</p></td>\n<td><p>Events involving this sponsorable, such as new sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorsactivityorder\">SponsorsActivityOrder</a></code>)</p>\n<p>Ordering options for activity returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>period</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsactivityperiod\">SponsorsActivityPeriod</a></code>)</p>\n<p>Filter activities returned to only those that occurred in a given time range.</p>\n<p>The default value is <code>MONTH</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/graphql/reference/objects#sponsorslisting\">SponsorsListing</a></code>)</p></td>\n<td><p>The GitHub Sponsors listing for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsor</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you&apos;re the sponsor. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsorable</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you&apos;re receiving. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipNewsletters</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletterconnection\">SponsorshipNewsletterConnection!</a></code>)</p></td>\n<td><p>List of sponsorship updates sent from this sponsorable to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshipnewsletterorder\">SponsorshipNewsletterOrder</a></code>)</p>\n<p>Ordering options for sponsorship updates returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSponsor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to sponsor this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsSponsoring</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>A list of organizations managed by an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseownerconnection\">\n      <a href=\"#organizationenterpriseownerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationenterpriseowneredge\">[OrganizationEnterpriseOwnerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseowneredge\">\n      <a href=\"#organizationenterpriseowneredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerEdge</h2>\n    <p>An enterprise owner in the context of an organization that is part of the enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role of the owner with respect to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"package\">\n      <a href=\"#package\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Package</h2>\n    <p>Information for an uploaded package.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>latestVersion</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find the latest version for the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageType</code> (<code><a href=\"/en/graphql/reference/enums#packagetype\">PackageType!</a></code>)</p></td>\n<td><p>Identifies the type of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this package belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/graphql/reference/objects#packagestatistics\">PackageStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find package version by version string.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>version</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The package version.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>versions</code> (<code><a href=\"/en/graphql/reference/objects#packageversionconnection\">PackageVersionConnection!</a></code>)</p></td>\n<td><p>list of versions for this package.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packageversionorder\">PackageVersionOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageconnection\">\n      <a href=\"#packageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageConnection</h2>\n    <p>The connection type for Package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#packageedge\">[PackageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#package\">[Package]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageedge\">\n      <a href=\"#packageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefile\">\n      <a href=\"#packagefile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFile</h2>\n    <p>A file in a package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>md5</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>MD5 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Name of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersion</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The package version this file belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha1</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA1 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha256</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA256 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Size of the file in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to download the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileconnection\">\n      <a href=\"#packagefileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileConnection</h2>\n    <p>The connection type for PackageFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#packagefileedge\">[PackageFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#packagefile\">[PackageFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileedge\">\n      <a href=\"#packagefileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#packagefile\">PackageFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagestatistics\">\n      <a href=\"#packagestatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageStatistics</h2>\n    <p>Represents a object that contains package activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagetag\">\n      <a href=\"#packagetag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageTag</h2>\n    <p>A version tag contains the mapping between a tag name and a version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the tag name of the version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Version that the tag is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversion\">\n      <a href=\"#packageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersion</h2>\n    <p>Information about a specific package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/graphql/reference/objects#packagefileconnection\">PackageFileConnection!</a></code>)</p></td>\n<td><p>List of files associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packagefileorder\">PackageFileOrder</a></code>)</p>\n<p>Ordering of the returned package files.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The package associated with this version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The platform this version was built for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preRelease</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this version is a pre-release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readme</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The README of this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The release associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/graphql/reference/objects#packageversionstatistics\">PackageVersionStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The package version summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The version string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionconnection\">\n      <a href=\"#packageversionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionConnection</h2>\n    <p>The connection type for PackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#packageversionedge\">[PackageVersionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">[PackageVersion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionedge\">\n      <a href=\"#packageversionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionstatistics\">\n      <a href=\"#packageversionstatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionStatistics</h2>\n    <p>Represents a object that contains package version activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussion\">\n      <a href=\"#pinneddiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussion</h2>\n    <p>A Pinned Discussion is a discussion pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion!</a></code>)</p></td>\n<td><p>The discussion that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gradientStopColors</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Color stops of the chosen gradient.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/enums#pinneddiscussionpattern\">PinnedDiscussionPattern!</a></code>)</p></td>\n<td><p>Background texture pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preconfiguredGradient</code> (<code><a href=\"/en/graphql/reference/enums#pinneddiscussiongradient\">PinnedDiscussionGradient</a></code>)</p></td>\n<td><p>Preconfigured background gradient option.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionconnection\">\n      <a href=\"#pinneddiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionConnection</h2>\n    <p>The connection type for PinnedDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pinneddiscussionedge\">[PinnedDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pinneddiscussion\">[PinnedDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionedge\">\n      <a href=\"#pinneddiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pinneddiscussion\">PinnedDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnext\">\n      <a href=\"#projectnext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNext</h2>\n    <p>New projects that manage issues, pull requests and drafts using tables and boards.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if the project is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fields</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfieldconnection\">ProjectNextFieldConnection!</a></code>)</p></td>\n<td><p>List of fields in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of items in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if the project is public.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>The repositories the project is linked to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s short description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextconnection\">\n      <a href=\"#projectnextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextConnection</h2>\n    <p>The connection type for ProjectNext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectnextedge\">[ProjectNextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">[ProjectNext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextedge\">\n      <a href=\"#projectnextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfield\">\n      <a href=\"#projectnextfield\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextField</h2>\n    <p>A field inside a project.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project field&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settings</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The field&apos;s settings.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfieldconnection\">\n      <a href=\"#projectnextfieldconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextFieldConnection</h2>\n    <p>The connection type for ProjectNextField.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfieldedge\">[ProjectNextFieldEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfield\">[ProjectNextField]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfieldedge\">\n      <a href=\"#projectnextfieldedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextFieldEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfield\">ProjectNextField</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitem\">\n      <a href=\"#projectnextitem\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItem</h2>\n    <p>An item within a new Project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/unions#projectnextitemcontent\">ProjectNextItemContent</a></code>)</p></td>\n<td><p>The content of the referenced issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fieldValues</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemfieldvalueconnection\">ProjectNextItemFieldValueConnection!</a></code>)</p></td>\n<td><p>List of field values.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the item is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext!</a></code>)</p></td>\n<td><p>The project that contains this item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemconnection\">\n      <a href=\"#projectnextitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemConnection</h2>\n    <p>The connection type for ProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemedge\">[ProjectNextItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitem\">[ProjectNextItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemedge\">\n      <a href=\"#projectnextitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitem\">ProjectNextItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalue\">\n      <a href=\"#projectnextitemfieldvalue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValue</h2>\n    <p>An value of a field in an item of a new Project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectField</code> (<code><a href=\"/en/graphql/reference/objects#projectnextfield\">ProjectNextField!</a></code>)</p></td>\n<td><p>The project field that contains this value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectItem</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitem\">ProjectNextItem!</a></code>)</p></td>\n<td><p>The project item that contains this value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The value of a field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalueconnection\">\n      <a href=\"#projectnextitemfieldvalueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValueConnection</h2>\n    <p>The connection type for ProjectNextItemFieldValue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemfieldvalueedge\">[ProjectNextItemFieldValueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemfieldvalue\">[ProjectNextItemFieldValue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalueedge\">\n      <a href=\"#projectnextitemfieldvalueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemfieldvalue\">ProjectNextItemFieldValue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLinkedOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Return only manually linked Issues.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItems</code> (<code><a href=\"/en/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of project (beta) items associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Include archived items.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>Identifies the pull request title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMergeAsAdmin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can bypass branch protections and merge the pull request immediately.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The latest review given from the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReviewRequest</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The person who has requested the viewer for review on this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttemplate\">\n      <a href=\"#pullrequesttemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTemplate</h2>\n    <p>A repository pull request template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The filename of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the template belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactors</code> (<code><a href=\"/en/graphql/reference/objects#reactorconnection\">ReactorConnection!</a></code>)</p></td>\n<td><p>Reactors to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>users</code> is deprecated.</p><p>Reactors can now be mannequins, bots, and organizations. Use the <code>reactors</code> field instead. Removal on 2021-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactorconnection\">\n      <a href=\"#reactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorConnection</h2>\n    <p>The connection type for Reactor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reactoredge\">[ReactorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#reactor\">[Reactor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactoredge\">\n      <a href=\"#reactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorEdge</h2>\n    <p>Represents an author of a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#reactor\">Reactor!</a></code>)</p></td>\n<td><p>The author of the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerAllowedToDismissReviews</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the viewer allowed to dismiss reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentions</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection</a></code>)</p></td>\n<td><p>A list of users mentioned in the release description.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not Auto-merge can be enabled on pull requests in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeowners</code> (<code><a href=\"/en/graphql/reference/objects#repositorycodeowners\">RepositoryCodeowners</a></code>)</p></td>\n<td><p>Information extracted from the repository&apos;s <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The ref name used to return the associated <code>CODEOWNERS</code> file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependencyGraphManifests</code> (<code><a href=\"/en/graphql/reference/objects#dependencygraphmanifestconnection\">DependencyGraphManifestConnection</a></code>)</p></td>\n<td><p>A list of dependency manifests contained in the repository.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>dependencyGraphManifests</code> is available under the <a href=\"/en/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>dependenciesAfter</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Cursor to paginate dependencies.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>dependenciesFirst</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Number of dependencies to fetch.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>withDependencies</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Flag to scope to only manifests with dependencies.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>Returns a single discussion from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the discussion to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCategories</code> (<code><a href=\"/en/graphql/reference/objects#discussioncategoryconnection\">DiscussionCategoryConnection!</a></code>)</p></td>\n<td><p>A list of discussion categories that are available in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterByAssignable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by categories that are assignable by the viewer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>categoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Only include discussions that belong to the category with this ID.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>Returns a single active environment from the current repository by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the environment to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>A list of environments that are in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository allows forks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fundingLinks</code> (<code><a href=\"/en/graphql/reference/objects#fundinglink\">[FundingLink!]!</a></code>)</p></td>\n<td><p>The funding links for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedDiscussions</code> (<code><a href=\"/en/graphql/reference/objects#pinneddiscussionconnection\">PinnedDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been pinned in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Finds and returns the Project (beta) according to the provided Project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The ProjectNext number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>List of projects (beta) linked to this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for linked to the repo.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned project (beta) objects.</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestTemplates</code> (<code><a href=\"/en/graphql/reference/objects#pullrequesttemplate\">[PullRequestTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of pull request templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvulnerabilityalertstate\">[RepositoryVulnerabilityAlertState!]</a></code>)</p>\n<p>Filter by the state of the alert.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeowners\">\n      <a href=\"#repositorycodeowners\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeowners</h2>\n    <p>Information extracted from a repository&apos;s <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>errors</code> (<code><a href=\"/en/graphql/reference/objects#repositorycodeownerserror\">[RepositoryCodeownersError!]!</a></code>)</p></td>\n<td><p>Any problems that were encountered while parsing the <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeownerserror\">\n      <a href=\"#repositorycodeownerserror\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeownersError</h2>\n    <p>An error in a <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The column number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short string describing the type of error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A complete description of the error, combining information from other fields.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to the file when the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the line where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A suggestion of how to fix the error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinteractionability\">\n      <a href=\"#repositoryinteractionability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInteractionAbility</h2>\n    <p>Repository interaction limit that applies to this object.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time the currently active limit expires.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The current limit that is enabled on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/graphql/reference/enums#repositoryinteractionlimitorigin\">RepositoryInteractionLimitOrigin!</a></code>)</p></td>\n<td><p>The origin of the currently active interaction limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigration\">\n      <a href=\"#repositorymigration\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigration</h2>\n    <p>An Octoshift repository migration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#migration\">Migration</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The Octoshift migration flag to continue on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>failureReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the migration failed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>migrationSource</code> (<code><a href=\"/en/graphql/reference/objects#migrationsource\">MigrationSource!</a></code>)</p></td>\n<td><p>The Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#migrationstate\">MigrationState!</a></code>)</p></td>\n<td><p>The Octoshift migration state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationconnection\">\n      <a href=\"#repositorymigrationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationConnection</h2>\n    <p>The connection type for RepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositorymigrationedge\">[RepositoryMigrationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repositorymigration\">[RepositoryMigration]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationedge\">\n      <a href=\"#repositorymigrationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationEdge</h2>\n    <p>Represents a repository migration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repositorymigration\">RepositoryMigration</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixReason</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was marked as fixed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert fixed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the alert number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#repositoryvulnerabilityalertstate\">RepositoryVulnerabilityAlertState!</a></code>)</p></td>\n<td><p>Identifies the state of the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckdescription\">\n      <a href=\"#requiredstatuscheckdescription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckDescription</h2>\n    <p>Represents a required status check for a protected branch, but not any specific run of that check.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The App that must provide this status in order for it to be accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of discussions that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#securityvulnerabilityorder\">SecurityVulnerabilityOrder</a></code>)</p>\n<p>Ordering options for the returned topics.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorconnection\">\n      <a href=\"#sponsorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorConnection</h2>\n    <p>The connection type for Sponsor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsoredge\">[SponsorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#sponsor\">[Sponsor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsoredge\">\n      <a href=\"#sponsoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorEdge</h2>\n    <p>Represents a user or organization who is sponsoring someone in GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableitemconnection\">\n      <a href=\"#sponsorableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableItemConnection</h2>\n    <p>The connection type for SponsorableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorableitemedge\">[SponsorableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#sponsorableitem\">[SponsorableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableitemedge\">\n      <a href=\"#sponsorableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#sponsorableitem\">SponsorableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivity\">\n      <a href=\"#sponsorsactivity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivity</h2>\n    <p>An event related to sponsorship activity.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsactivityaction\">SponsorsActivityAction!</a></code>)</p></td>\n<td><p>What action this activity indicates took place.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSponsorsTier</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The tier that the sponsorship used to use, for tier change events.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization who triggered this activity and was/is sponsoring the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The user or organization that is being sponsored, the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsTier</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The associated sponsorship tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timestamp</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The timestamp of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityconnection\">\n      <a href=\"#sponsorsactivityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityConnection</h2>\n    <p>The connection type for SponsorsActivity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivityedge\">[SponsorsActivityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivity\">[SponsorsActivity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityedge\">\n      <a href=\"#sponsorsactivityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivity\">SponsorsActivity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsgoal\">\n      <a href=\"#sponsorsgoal\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsGoal</h2>\n    <p>A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of the goal from the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsgoalkind\">SponsorsGoalKind!</a></code>)</p></td>\n<td><p>What the objective of this goal is.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>percentComplete</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The percentage representing how complete this goal is, between 0-100.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetValue</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A brief summary of the kind and target value of this goal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorslisting\">\n      <a href=\"#sponsorslisting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsListing</h2>\n    <p>A GitHub Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeGoal</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsgoal\">SponsorsGoal</a></code>)</p></td>\n<td><p>The current goal the maintainer is trying to reach with GitHub Sponsors, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full description of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The full description of the listing rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s full name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nextPayoutDate</code> (<code><a href=\"/en/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>A future date on which this listing is eligible to receive a payout.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short description of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity this listing represents who can be sponsored on GitHub Sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tiers</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstierconnection\">SponsorsTierConnection</a></code>)</p></td>\n<td><p>The published tiers for this GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorstierorder\">SponsorsTierOrder</a></code>)</p>\n<p>Ordering options for Sponsors tiers returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstier\">\n      <a href=\"#sponsorstier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTier</h2>\n    <p>A GitHub Sponsors tier associated with a GitHub Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminInfo</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstieradmininfo\">SponsorsTierAdminInfo</a></code>)</p></td>\n<td><p>SponsorsTier information only visible to users that can administer the associated Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closestLesserValueTier</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>Get a different tier for this tier&apos;s maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier&apos;s without going over.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The description of the tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The tier description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCustomAmount</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOneTime</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this tier is only for use with one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyPriceInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How much this tier costs per month in cents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyPriceInDollars</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How much this tier costs per month in USD.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/graphql/reference/objects#sponsorslisting\">SponsorsListing!</a></code>)</p></td>\n<td><p>The sponsors listing that this tier belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstieradmininfo\">\n      <a href=\"#sponsorstieradmininfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierAdminInfo</h2>\n    <p>SponsorsTier information only visible to users that can administer the associated Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>sponsorships</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>The sponsorships associated with this tier.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstierconnection\">\n      <a href=\"#sponsorstierconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierConnection</h2>\n    <p>The connection type for SponsorsTier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstieredge\">[SponsorsTierEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">[SponsorsTier]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstieredge\">\n      <a href=\"#sponsorstieredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorship\">\n      <a href=\"#sponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Sponsorship</h2>\n    <p>A sponsorship relationship between a sponsor and a maintainer.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOneTimePayment</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this sponsorship represents a one-time payment versus a recurring sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsorOptedIntoEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>maintainer</code> is deprecated.</p><p><code>Sponsorship.maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead. Removal on 2020-04-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy!</a></code>)</p></td>\n<td><p>The privacy level for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>sponsor</code> is deprecated.</p><p><code>Sponsorship.sponsor</code> will be removed. Use <code>Sponsorship.sponsorEntity</code> instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorEntity</code> (<code><a href=\"/en/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization that is sponsoring, if you have permission to view them.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tier</code> (<code><a href=\"/en/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The associated sponsorship tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tierSelectedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the current tier was chosen for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipconnection\">\n      <a href=\"#sponsorshipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipConnection</h2>\n    <p>The connection type for Sponsorship.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipedge\">[SponsorshipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">[Sponsorship]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRecurringMonthlyPriceInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRecurringMonthlyPriceInDollars</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipedge\">\n      <a href=\"#sponsorshipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletter\">\n      <a href=\"#sponsorshipnewsletter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletter</h2>\n    <p>An update sent to sponsors of a user or organization on GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the newsletter, the message the sponsorable wanted to give.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublished</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the newsletter has been made available to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The user or organization this newsletter is from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The subject of the newsletter, what it&apos;s about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletterconnection\">\n      <a href=\"#sponsorshipnewsletterconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterConnection</h2>\n    <p>The connection type for SponsorshipNewsletter.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletteredge\">[SponsorshipNewsletterEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletter\">[SponsorshipNewsletter]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletteredge\">\n      <a href=\"#sponsorshipnewsletteredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletter\">SponsorshipNewsletter</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sponsorableOnly</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canReceiveOrganizationEmailsWhenNotificationsRestricted</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Could this user receive email notifications, if the organization had notification restrictions enabled?.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to check.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>estimatedNextSponsorsPayoutInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasSponsorsListing</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if this user/organization has a GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFollowingViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is following the viewer. Inverse of viewer_is_following.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoredBy</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the given account is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>accountLogin</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The target account&apos;s login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoringViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsored by this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyEstimatedSponsorsIncomeInCents</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsoring</code> (<code><a href=\"/en/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of users and organizations this entity is sponsoring.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for the users and organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsors</code> (<code><a href=\"/en/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of sponsors for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for sponsors returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tierId</code> (<code><a href=\"/en/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsActivities</code> (<code><a href=\"/en/graphql/reference/objects#sponsorsactivityconnection\">SponsorsActivityConnection!</a></code>)</p></td>\n<td><p>Events involving this sponsorable, such as new sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorsactivityorder\">SponsorsActivityOrder</a></code>)</p>\n<p>Ordering options for activity returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>period</code> (<code><a href=\"/en/graphql/reference/enums#sponsorsactivityperiod\">SponsorsActivityPeriod</a></code>)</p>\n<p>Filter activities returned to only those that occurred in a given time range.</p>\n<p>The default value is <code>MONTH</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/graphql/reference/objects#sponsorslisting\">SponsorsListing</a></code>)</p></td>\n<td><p>The GitHub Sponsors listing for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsor</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you&apos;re the sponsor. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsorable</code> (<code><a href=\"/en/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you&apos;re receiving. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipNewsletters</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipnewsletterconnection\">SponsorshipNewsletterConnection!</a></code>)</p></td>\n<td><p>List of sponsorship updates sent from this sponsorable to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshipnewsletterorder\">SponsorshipNewsletterOrder</a></code>)</p>\n<p>Ordering options for sponsorship updates returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSponsor</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to sponsor this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer. Inverse of is_following_viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsSponsoring</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomain\">\n      <a href=\"#verifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomain</h2>\n    <p>A domain that can be verified or approved for an organization or an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dnsHostName</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The DNS host name that should be used for verification.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The unicode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundHostName</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected host name was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundVerificationToken</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected verification token was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isApproved</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is approved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequiredForPolicyEnforcement</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this domain is required to exist for an organization or enterprise policy to be enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner!</a></code>)</p></td>\n<td><p>The owner of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>punycodeEncodedDomain</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The punycode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tokenExpirationTime</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the current verification token will expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current verification token for the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainconnection\">\n      <a href=\"#verifiabledomainconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainConnection</h2>\n    <p>The connection type for VerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomainedge\">[VerifiableDomainEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomain\">[VerifiableDomain]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainedge\">\n      <a href=\"#verifiabledomainedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflow\">\n      <a href=\"#workflow\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Workflow</h2>\n    <p>A workflow contains meta information about an Actions workflow file.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflowrun\">\n      <a href=\"#workflowrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>WorkflowRun</h2>\n    <p>A workflow run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite this workflow run belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentReviews</code> (<code><a href=\"/en/graphql/reference/objects#deploymentreviewconnection\">DeploymentReviewConnection!</a></code>)</p></td>\n<td><p>The log of deployment reviews.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequests</code> (<code><a href=\"/en/graphql/reference/objects#deploymentrequestconnection\">DeploymentRequestConnection!</a></code>)</p></td>\n<td><p>The pending deployment requests of all check runs in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>runNumber</code> (<code><a href=\"/en/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number that uniquely identifies this workflow run in its parent workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflow</code> (<code><a href=\"/en/graphql/reference/objects#workflow\">Workflow!</a></code>)</p></td>\n<td><p>The workflow executed in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#actorlocation\">\n      ActorLocation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#actorlocation\">\n      ActorLocation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#app\">\n      App</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#app\">\n      App</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#assignedevent\">\n      AssignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#assignedevent\">\n      AssignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blame\">\n      Blame</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blame\">\n      Blame</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blamerange\">\n      BlameRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blamerange\">\n      BlameRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blob\">\n      Blob</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blob\">\n      Blob</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bot\">\n      Bot</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bot\">\n      Bot</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowance\">\n      BypassForcePushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowance\">\n      BypassForcePushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowanceconnection\">\n      BypassForcePushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowanceconnection\">\n      BypassForcePushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowanceedge\">\n      BypassForcePushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowanceedge\">\n      BypassForcePushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowance\">\n      BypassPullRequestAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowance\">\n      BypassPullRequestAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowanceconnection\">\n      BypassPullRequestAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowanceconnection\">\n      BypassPullRequestAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowanceedge\">\n      BypassPullRequestAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowanceedge\">\n      BypassPullRequestAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cvss\">\n      CVSS</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cvss\">\n      CVSS</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cwe\">\n      CWE</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cwe\">\n      CWE</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweconnection\">\n      CWEConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweconnection\">\n      CWEConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweedge\">\n      CWEEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweedge\">\n      CWEEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrun\">\n      CheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrun\">\n      CheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstep\">\n      CheckStep</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstep\">\n      CheckStep</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuite\">\n      CheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuite\">\n      CheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closedevent\">\n      ClosedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closedevent\">\n      ClosedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commit\">\n      Commit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commit\">\n      Commit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcomment\">\n      CommitComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcomment\">\n      CommitComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitconnection\">\n      CommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitconnection\">\n      CommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitedge\">\n      CommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitedge\">\n      CommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertedtodiscussionevent\">\n      ConvertedToDiscussionEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertedtodiscussionevent\">\n      ConvertedToDiscussionEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphdependency\">\n      DependencyGraphDependency</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphdependency\">\n      DependencyGraphDependency</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphdependencyconnection\">\n      DependencyGraphDependencyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphdependencyconnection\">\n      DependencyGraphDependencyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphdependencyedge\">\n      DependencyGraphDependencyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphdependencyedge\">\n      DependencyGraphDependencyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphmanifest\">\n      DependencyGraphManifest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphmanifest\">\n      DependencyGraphManifest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphmanifestconnection\">\n      DependencyGraphManifestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphmanifestconnection\">\n      DependencyGraphManifestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphmanifestedge\">\n      DependencyGraphManifestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphmanifestedge\">\n      DependencyGraphManifestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykey\">\n      DeployKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykey\">\n      DeployKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployedevent\">\n      DeployedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployedevent\">\n      DeployedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployment\">\n      Deployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployment\">\n      Deployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussion\">\n      Discussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussion\">\n      Discussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprise\">\n      Enterprise</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprise\">\n      Enterprise</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallationconnection\">\n      EnterpriseServerInstallationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallationconnection\">\n      EnterpriseServerInstallationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallationedge\">\n      EnterpriseServerInstallationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallationedge\">\n      EnterpriseServerInstallationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environment\">\n      Environment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environment\">\n      Environment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followerconnection\">\n      FollowerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followerconnection\">\n      FollowerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followingconnection\">\n      FollowingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followingconnection\">\n      FollowingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#fundinglink\">\n      FundingLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#fundinglink\">\n      FundingLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gist\">\n      Gist</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gist\">\n      Gist</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcomment\">\n      GistComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcomment\">\n      GistComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistconnection\">\n      GistConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistconnection\">\n      GistConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistedge\">\n      GistEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistedge\">\n      GistEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistfile\">\n      GistFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistfile\">\n      GistFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactor\">\n      GitActor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactor\">\n      GitActor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gpgsignature\">\n      GpgSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gpgsignature\">\n      GpgSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#hovercard\">\n      Hovercard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#hovercard\">\n      Hovercard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issue\">\n      Issue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issue\">\n      Issue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecomment\">\n      IssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecomment\">\n      IssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueconnection\">\n      IssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueconnection\">\n      IssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueedge\">\n      IssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueedge\">\n      IssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#label\">\n      Label</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#label\">\n      Label</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelconnection\">\n      LabelConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelconnection\">\n      LabelConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledge\">\n      LabelEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledge\">\n      LabelEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledevent\">\n      LabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledevent\">\n      LabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#language\">\n      Language</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#language\">\n      Language</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageconnection\">\n      LanguageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageconnection\">\n      LanguageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageedge\">\n      LanguageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageedge\">\n      LanguageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#license\">\n      License</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#license\">\n      License</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#licenserule\">\n      LicenseRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#licenserule\">\n      LicenseRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#lockedevent\">\n      LockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#lockedevent\">\n      LockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mannequin\">\n      Mannequin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mannequin\">\n      Mannequin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#marketplacecategory\">\n      MarketplaceCategory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#marketplacecategory\">\n      MarketplaceCategory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#marketplacelisting\">\n      MarketplaceListing</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#marketplacelisting\">\n      MarketplaceListing</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#marketplacelistingconnection\">\n      MarketplaceListingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#marketplacelistingconnection\">\n      MarketplaceListingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#marketplacelistingedge\">\n      MarketplaceListingEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#marketplacelistingedge\">\n      MarketplaceListingEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergedevent\">\n      MergedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergedevent\">\n      MergedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#migrationsource\">\n      MigrationSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#migrationsource\">\n      MigrationSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestone\">\n      Milestone</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestone\">\n      Milestone</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oidcprovider\">\n      OIDCProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oidcprovider\">\n      OIDCProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organization\">\n      Organization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organization\">\n      Organization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationenterpriseownerconnection\">\n      OrganizationEnterpriseOwnerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationenterpriseownerconnection\">\n      OrganizationEnterpriseOwnerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationenterpriseowneredge\">\n      OrganizationEnterpriseOwnerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationenterpriseowneredge\">\n      OrganizationEnterpriseOwnerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#package\">\n      Package</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#package\">\n      Package</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageconnection\">\n      PackageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageconnection\">\n      PackageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageedge\">\n      PackageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageedge\">\n      PackageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefile\">\n      PackageFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefile\">\n      PackageFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagetag\">\n      PackageTag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagetag\">\n      PackageTag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversion\">\n      PackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversion\">\n      PackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pageinfo\">\n      PageInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pageinfo\">\n      PageInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#permissionsource\">\n      PermissionSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#permissionsource\">\n      PermissionSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#project\">\n      Project</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#project\">\n      Project</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcard\">\n      ProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcard\">\n      ProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectconnection\">\n      ProjectConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectconnection\">\n      ProjectConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectedge\">\n      ProjectEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectedge\">\n      ProjectEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnext\">\n      ProjectNext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnext\">\n      ProjectNext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextconnection\">\n      ProjectNextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextconnection\">\n      ProjectNextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextedge\">\n      ProjectNextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextedge\">\n      ProjectNextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextfield\">\n      ProjectNextField</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextfield\">\n      ProjectNextField</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextfieldconnection\">\n      ProjectNextFieldConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextfieldconnection\">\n      ProjectNextFieldConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextfieldedge\">\n      ProjectNextFieldEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextfieldedge\">\n      ProjectNextFieldEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitem\">\n      ProjectNextItem</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitem\">\n      ProjectNextItem</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemconnection\">\n      ProjectNextItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemconnection\">\n      ProjectNextItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemedge\">\n      ProjectNextItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemedge\">\n      ProjectNextItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemfieldvalue\">\n      ProjectNextItemFieldValue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemfieldvalue\">\n      ProjectNextItemFieldValue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemfieldvalueconnection\">\n      ProjectNextItemFieldValueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemfieldvalueconnection\">\n      ProjectNextItemFieldValueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemfieldvalueedge\">\n      ProjectNextItemFieldValueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemfieldvalueedge\">\n      ProjectNextItemFieldValueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectprogress\">\n      ProjectProgress</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectprogress\">\n      ProjectProgress</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickey\">\n      PublicKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickey\">\n      PublicKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequest\">\n      PullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequest\">\n      PullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#push\">\n      Push</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#push\">\n      Push</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowance\">\n      PushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowance\">\n      PushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ratelimit\">\n      RateLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ratelimit\">\n      RateLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reaction\">\n      Reaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reaction\">\n      Reaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionedge\">\n      ReactionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionedge\">\n      ReactionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactoredge\">\n      ReactorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactoredge\">\n      ReactorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ref\">\n      Ref</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ref\">\n      Ref</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refconnection\">\n      RefConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refconnection\">\n      RefConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refedge\">\n      RefEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refedge\">\n      RefEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#release\">\n      Release</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#release\">\n      Release</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repository\">\n      Repository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repository\">\n      Repository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycodeowners\">\n      RepositoryCodeowners</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycodeowners\">\n      RepositoryCodeowners</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycodeownerserror\">\n      RepositoryCodeownersError</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycodeownerserror\">\n      RepositoryCodeownersError</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinteractionability\">\n      RepositoryInteractionAbility</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinteractionability\">\n      RepositoryInteractionAbility</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigration\">\n      RepositoryMigration</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigration\">\n      RepositoryMigration</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigrationconnection\">\n      RepositoryMigrationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigrationconnection\">\n      RepositoryMigrationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigrationedge\">\n      RepositoryMigrationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigrationedge\">\n      RepositoryMigrationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requiredstatuscheckdescription\">\n      RequiredStatusCheckDescription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requiredstatuscheckdescription\">\n      RequiredStatusCheckDescription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreply\">\n      SavedReply</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreply\">\n      SavedReply</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#smimesignature\">\n      SmimeSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#smimesignature\">\n      SmimeSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorconnection\">\n      SponsorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorconnection\">\n      SponsorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsoredge\">\n      SponsorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsoredge\">\n      SponsorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorableitemconnection\">\n      SponsorableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorableitemconnection\">\n      SponsorableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorableitemedge\">\n      SponsorableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorableitemedge\">\n      SponsorableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsactivity\">\n      SponsorsActivity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsactivity\">\n      SponsorsActivity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsactivityconnection\">\n      SponsorsActivityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsactivityconnection\">\n      SponsorsActivityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsactivityedge\">\n      SponsorsActivityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsactivityedge\">\n      SponsorsActivityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsgoal\">\n      SponsorsGoal</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsgoal\">\n      SponsorsGoal</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorslisting\">\n      SponsorsListing</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorslisting\">\n      SponsorsListing</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstier\">\n      SponsorsTier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstier\">\n      SponsorsTier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstieradmininfo\">\n      SponsorsTierAdminInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstieradmininfo\">\n      SponsorsTierAdminInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstierconnection\">\n      SponsorsTierConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstierconnection\">\n      SponsorsTierConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstieredge\">\n      SponsorsTierEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstieredge\">\n      SponsorsTierEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorship\">\n      Sponsorship</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorship\">\n      Sponsorship</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipnewsletter\">\n      SponsorshipNewsletter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipnewsletter\">\n      SponsorshipNewsletter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipnewsletterconnection\">\n      SponsorshipNewsletterConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipnewsletterconnection\">\n      SponsorshipNewsletterConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipnewsletteredge\">\n      SponsorshipNewsletterEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipnewsletteredge\">\n      SponsorshipNewsletterEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#status\">\n      Status</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#status\">\n      Status</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscontext\">\n      StatusContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscontext\">\n      StatusContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submodule\">\n      Submodule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submodule\">\n      Submodule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tag\">\n      Tag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tag\">\n      Tag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#team\">\n      Team</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#team\">\n      Team</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamconnection\">\n      TeamConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamconnection\">\n      TeamConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamedge\">\n      TeamEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamedge\">\n      TeamEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatch\">\n      TextMatch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatch\">\n      TextMatch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#topic\">\n      Topic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#topic\">\n      Topic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferredevent\">\n      TransferredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferredevent\">\n      TransferredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tree\">\n      Tree</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tree\">\n      Tree</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#treeentry\">\n      TreeEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#treeentry\">\n      TreeEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#user\">\n      User</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#user\">\n      User</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userconnection\">\n      UserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userconnection\">\n      UserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useredge\">\n      UserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useredge\">\n      UserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatus\">\n      UserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatus\">\n      UserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflow\">\n      Workflow</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflow\">\n      Workflow</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflowrun\">\n      WorkflowRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflowrun\">\n      WorkflowRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -3757,3755 +3757,3755 @@
     ]
   },
   "ghec": {
-    "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses of the app.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushAllowances</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypassforcepushallowanceconnection\">BypassForcePushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to force push for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestAllowances</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypasspullrequestallowanceconnection\">BypassPullRequestAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to bypass PRs for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#requiredstatuscheckdescription\">[RequiredStatusCheckDescription!]</a></code>)</p></td>\n<td><p>List of required status checks that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowance\">\n      <a href=\"#bypassforcepushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowance</h2>\n    <p>A team or user who has the ability to bypass a force push requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceconnection\">\n      <a href=\"#bypassforcepushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceConnection</h2>\n    <p>The connection type for BypassForcePushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypassforcepushallowanceedge\">[BypassForcePushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypassforcepushallowance\">[BypassForcePushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceedge\">\n      <a href=\"#bypassforcepushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypassforcepushallowance\">BypassForcePushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowance\">\n      <a href=\"#bypasspullrequestallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowance</h2>\n    <p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceconnection\">\n      <a href=\"#bypasspullrequestallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceConnection</h2>\n    <p>The connection type for BypassPullRequestAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypasspullrequestallowanceedge\">[BypassPullRequestAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypasspullrequestallowance\">[BypassPullRequestAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceedge\">\n      <a href=\"#bypasspullrequestallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypasspullrequestallowance\">BypassPullRequestAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The corresponding deployment for this job, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>Information about a pending deployment, if any, in this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>steps</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkstepconnection\">CheckStepConnection</a></code>)</p></td>\n<td><p>The check run&apos;s steps.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Step number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstep\">\n      <a href=\"#checkstep\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStep</h2>\n    <p>A single check step.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check step on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The step&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The index of the step in the list of steps of the parent check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondsToCompletion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of seconds to completion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepconnection\">\n      <a href=\"#checkstepconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepConnection</h2>\n    <p>The connection type for CheckStep.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkstepedge\">[CheckStepEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkstep\">[CheckStep]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepedge\">\n      <a href=\"#checkstepedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkstep\">CheckStep</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who triggered the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRun</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#workflowrun\">WorkflowRun</a></code>)</p></td>\n<td><p>The workflow run associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertedtodiscussionevent\">\n      <a href=\"#convertedtodiscussionevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedToDiscussionEvent</h2>\n    <p>Represents a<code>converted_to_discussion</code>event on a given issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that the issue was converted into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependency\">\n      <a href=\"#dependencygraphdependency\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependency</h2>\n    <p>A dependency manifest entry.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependency</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasDependencies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the dependency itself have dependencies?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageLabel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The original name of the package, as it appears in the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageManager</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The dependency package manager.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository containing the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requirements</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The dependency version requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependencyconnection\">\n      <a href=\"#dependencygraphdependencyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependencyConnection</h2>\n    <p>The connection type for DependencyGraphDependency.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependencyConnection</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphdependencyedge\">[DependencyGraphDependencyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphdependency\">[DependencyGraphDependency]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependencyedge\">\n      <a href=\"#dependencygraphdependencyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependencyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependencyEdge</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphdependency\">DependencyGraphDependency</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifest\">\n      <a href=\"#dependencygraphmanifest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifest</h2>\n    <p>Dependency manifest for a repository.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifest</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>blobPath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to view the manifest file blob.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependencies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphdependencyconnection\">DependencyGraphDependencyConnection</a></code>)</p></td>\n<td><p>A list of manifest dependencies.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependenciesCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of dependencies listed in the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>exceedsMaxSize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the manifest too big to parse?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Fully qualified manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parseable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Were we able to parse the manifest?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifestconnection\">\n      <a href=\"#dependencygraphmanifestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifestConnection</h2>\n    <p>The connection type for DependencyGraphManifest.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifestConnection</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphmanifestedge\">[DependencyGraphManifestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphmanifest\">[DependencyGraphManifest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifestedge\">\n      <a href=\"#dependencygraphmanifestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifestEdge</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphmanifest\">DependencyGraphManifest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionrule\">\n      <a href=\"#deploymentprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRule</h2>\n    <p>A protection rule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeout</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The timeout in minutes for this protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentprotectionruletype\">DeploymentProtectionRuleType!</a></code>)</p></td>\n<td><p>The type of protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleconnection\">\n      <a href=\"#deploymentprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleConnection</h2>\n    <p>The connection type for DeploymentProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentprotectionruleedge\">[DeploymentProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentprotectionrule\">[DeploymentProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleedge\">\n      <a href=\"#deploymentprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentprotectionrule\">DeploymentProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequest\">\n      <a href=\"#deploymentrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequest</h2>\n    <p>A request to deploy a workflow run to an environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>currentUserCanApprove</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can approve the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">Environment!</a></code>)</p></td>\n<td><p>The target environment of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimerStartedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestconnection\">\n      <a href=\"#deploymentrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestConnection</h2>\n    <p>The connection type for DeploymentRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequestedge\">[DeploymentRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequest\">[DeploymentRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestedge\">\n      <a href=\"#deploymentrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreview\">\n      <a href=\"#deploymentreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReview</h2>\n    <p>A deployment review.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>The environments approved or rejected.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentreviewstate\">DeploymentReviewState!</a></code>)</p></td>\n<td><p>The decision of the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that reviewed the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewconnection\">\n      <a href=\"#deploymentreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewConnection</h2>\n    <p>The connection type for DeploymentReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreviewedge\">[DeploymentReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreview\">[DeploymentReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewedge\">\n      <a href=\"#deploymentreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreview\">DeploymentReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewerconnection\">\n      <a href=\"#deploymentreviewerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerConnection</h2>\n    <p>The connection type for DeploymentReviewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrevieweredge\">[DeploymentReviewerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#deploymentreviewer\">[DeploymentReviewer]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrevieweredge\">\n      <a href=\"#deploymentrevieweredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#deploymentreviewer\">DeploymentReviewer</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussion\">\n      <a href=\"#discussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Discussion</h2>\n    <p>A discussion in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The comment chosen as this discussion&apos;s answer, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when a user chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The main text of the discussion post.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>category</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategory\">DiscussionCategory!</a></code>)</p></td>\n<td><p>The category for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The replies to the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number identifying this discussion within the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategory\">\n      <a href=\"#discussioncategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategory</h2>\n    <p>A category for discussions in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An emoji representing this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>This category&apos;s emoji rendered as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswerable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryconnection\">\n      <a href=\"#discussioncategoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryConnection</h2>\n    <p>The connection type for DiscussionCategory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategoryedge\">[DiscussionCategoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategory\">[DiscussionCategory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryedge\">\n      <a href=\"#discussioncategoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategory\">DiscussionCategory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncomment\">\n      <a href=\"#discussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionComment</h2>\n    <p>A comment on a discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when this replied-to comment was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion this comment was created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Has this comment been chosen as the answer of its discussion?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The threaded replies to this comment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment this comment is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMarkAsAnswer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user mark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnmarkAsAnswer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user unmark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentconnection\">\n      <a href=\"#discussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentConnection</h2>\n    <p>The connection type for DiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentedge\">[DiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">[DiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentedge\">\n      <a href=\"#discussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionconnection\">\n      <a href=\"#discussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionConnection</h2>\n    <p>The connection type for Discussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussionedge\">[DiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">[Discussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionedge\">\n      <a href=\"#discussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>viewerOrganizationRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The viewer&apos;s role in an organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided base repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection!</a></code>)</p></td>\n<td><p>A list of domains owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallationconnection\">EnterpriseServerInstallationConnection!</a></code>)</p></td>\n<td><p>Enterprise Server installations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>connectedOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to only return installations discovered via GitHub Connect.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseserverinstallationorder\">EnterpriseServerInstallationOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server installations returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the base repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oidcProvider</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#oidcprovider\">OIDCProvider</a></code>)</p></td>\n<td><p>The OIDC Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportEntitlements</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of members with a support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for support entitlement users returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationconnection\">\n      <a href=\"#enterpriseserverinstallationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationConnection</h2>\n    <p>The connection type for EnterpriseServerInstallation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallationedge\">[EnterpriseServerInstallationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallation\">[EnterpriseServerInstallation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationedge\">\n      <a href=\"#enterpriseserverinstallationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environment\">\n      <a href=\"#environment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Environment</h2>\n    <p>An environment.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>protectionRules</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentprotectionruleconnection\">DeploymentProtectionRuleConnection!</a></code>)</p></td>\n<td><p>The protection rules defined for this environment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentconnection\">\n      <a href=\"#environmentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentConnection</h2>\n    <p>The connection type for Environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environmentedge\">[EnvironmentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">[Environment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentedge\">\n      <a href=\"#environmentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fundinglink\">\n      <a href=\"#fundinglink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FundingLink</h2>\n    <p>A funding platform link for a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#fundingplatform\">FundingPlatform!</a></code>)</p></td>\n<td><p>The funding platform this link is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The configured URL for this funding link.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitIpAddresses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that users connect to for git operations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hookIpAddresses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that service hooks are sent from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>importerIpAddresses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that the importer connects from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pagesIpAddresses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses for GitHub Pages&apos; A records.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of project (beta) items associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Include archived items.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>claimant</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that has claimed the data attributed to this mannequin.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacecategory\">\n      <a href=\"#marketplacecategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceCategory</h2>\n    <p>A public description of a Marketplace category.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The category&apos;s description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The technical description of how apps listed in this category work with GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The category&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryListingCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many Marketplace listings have this as their primary category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Marketplace category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondaryListingCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many Marketplace listings have this as their secondary category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the category used in its URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Marketplace category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelisting\">\n      <a href=\"#marketplacelisting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListing</h2>\n    <p>A listing in the GitHub integration marketplace.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App this listing represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing owner&apos;s company site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>configurationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for configuring access to the listing&apos;s integration or OAuth app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>configurationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for configuring access to the listing&apos;s integration or OAuth app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>documentationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s documentation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extendedDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The listing&apos;s detailed description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extendedDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s detailed description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s introductory description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s introductory description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPublishedFreeTrialPlans</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does this listing have any plans with a free trial?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTermsOfService</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does this listing have a terms of service link?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasVerifiedOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the creator of the app is a verified org.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A technical description of how this app works with GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorksHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s technical description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>installationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to install the product to the viewer&apos;s account or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>installedForViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing&apos;s app has been installed for the current viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been removed from the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPaid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the product this listing represents is available as part of a paid plan.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRejected</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been rejected by GitHub for display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnverified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for unverified display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnverifiedPending</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerificationPendingFromDraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerificationPendingFromUnverified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for verified display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL for the listing&apos;s logo image.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s full name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>normalizedShortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s very short description without a trailing period or ampersands.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pricingUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s detailed pricing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryCategory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacecategory\">MarketplaceCategory!</a></code>)</p></td>\n<td><p>The category that best describes the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyPolicyUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>URL to the listing&apos;s privacy policy, may return an empty string for listings that do not require a privacy policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>screenshotUrls</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]!</a></code>)</p></td>\n<td><p>The URLs for the listing&apos;s screenshots.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondaryCategory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacecategory\">MarketplaceCategory</a></code>)</p></td>\n<td><p>An alternate category that describes the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s very short description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the listing used in its URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s status page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An email address for support for this listing&apos;s app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Either a URL or an email address for support for this listing&apos;s app, may\nreturn an empty string for listings that do not require a support URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>termsOfServiceUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s terms of service.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAddPlans</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer add plans for this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApprove</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer approve this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelist</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer delist this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEditCategories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit the primary and secondary category of this\nMarketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEditPlans</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit the plans for this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanRedraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanRequestApproval</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasPurchased</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current user has an active subscription to this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasPurchasedForAllOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsListingAdmin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the current viewer role allow them to administer this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelistingconnection\">\n      <a href=\"#marketplacelistingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListingConnection</h2>\n    <p>Look up Marketplace Listings.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacelistingedge\">[MarketplaceListingEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacelisting\">[MarketplaceListing]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelistingedge\">\n      <a href=\"#marketplacelistingedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListingEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacelisting\">MarketplaceListing</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"migrationsource\">\n      <a href=\"#migrationsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MigrationSource</h2>\n    <p>An Octoshift migration source.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oidcprovider\">\n      <a href=\"#oidcprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OIDCProvider</h2>\n    <p>An OIDC identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>providerType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#oidcprovidertype\">OIDCProviderType!</a></code>)</p></td>\n<td><p>The OIDC identity provider type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tenantId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the tenant this provider is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection</a></code>)</p></td>\n<td><p>A list of domains owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseOwners</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationenterpriseownerconnection\">OrganizationEnterpriseOwnerConnection!</a></code>)</p></td>\n<td><p>A list of owners of the organization&apos;s enterprise account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#orgenterpriseownerorder\">OrgEnterpriseOwnerOrder</a></code>)</p>\n<p>Ordering options for enterprise owners returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The organization role to filter by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>estimatedNextSponsorsPayoutInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasSponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if this user/organization has a GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoredBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the given account is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>accountLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The target account&apos;s login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoringViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsored by this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the organization has verified its profile email and website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanForkPrivateRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Members can fork private repositories in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyEstimatedSponsorsIncomeInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this organization is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryMigrations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorymigrationconnection\">RepositoryMigrationConnection!</a></code>)</p></td>\n<td><p>A list of all repository migrations for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositorymigrationorder\">RepositoryMigrationOrder</a></code>)</p>\n<p>Ordering options for repository migrations returned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#migrationstate\">MigrationState</a></code>)</p>\n<p>Filter repository migrations by state.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsoring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of users and organizations this entity is sponsoring.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for the users and organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of sponsors for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for sponsors returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tierId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsActivities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivityconnection\">SponsorsActivityConnection!</a></code>)</p></td>\n<td><p>Events involving this sponsorable, such as new sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorsactivityorder\">SponsorsActivityOrder</a></code>)</p>\n<p>Ordering options for activity returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>period</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsactivityperiod\">SponsorsActivityPeriod</a></code>)</p>\n<p>Filter activities returned to only those that occurred in a given time range.</p>\n<p>The default value is <code>MONTH</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorslisting\">SponsorsListing</a></code>)</p></td>\n<td><p>The GitHub Sponsors listing for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you&apos;re the sponsor. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you&apos;re receiving. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipNewsletters</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletterconnection\">SponsorshipNewsletterConnection!</a></code>)</p></td>\n<td><p>List of sponsorship updates sent from this sponsorable to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshipnewsletterorder\">SponsorshipNewsletterOrder</a></code>)</p>\n<p>Ordering options for sponsorship updates returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to sponsor this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsSponsoring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>A list of organizations managed by an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseownerconnection\">\n      <a href=\"#organizationenterpriseownerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationenterpriseowneredge\">[OrganizationEnterpriseOwnerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseowneredge\">\n      <a href=\"#organizationenterpriseowneredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerEdge</h2>\n    <p>An enterprise owner in the context of an organization that is part of the enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role of the owner with respect to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"package\">\n      <a href=\"#package\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Package</h2>\n    <p>Information for an uploaded package.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>latestVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find the latest version for the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagetype\">PackageType!</a></code>)</p></td>\n<td><p>Identifies the type of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this package belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagestatistics\">PackageStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find package version by version string.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>version</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The package version.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>versions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversionconnection\">PackageVersionConnection!</a></code>)</p></td>\n<td><p>list of versions for this package.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packageversionorder\">PackageVersionOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageconnection\">\n      <a href=\"#packageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageConnection</h2>\n    <p>The connection type for Package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageedge\">[PackageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#package\">[Package]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageedge\">\n      <a href=\"#packageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefile\">\n      <a href=\"#packagefile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFile</h2>\n    <p>A file in a package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>md5</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>MD5 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Name of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The package version this file belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha1</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA1 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha256</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA256 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Size of the file in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to download the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileconnection\">\n      <a href=\"#packagefileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileConnection</h2>\n    <p>The connection type for PackageFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagefileedge\">[PackageFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagefile\">[PackageFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileedge\">\n      <a href=\"#packagefileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagefile\">PackageFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagestatistics\">\n      <a href=\"#packagestatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageStatistics</h2>\n    <p>Represents a object that contains package activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagetag\">\n      <a href=\"#packagetag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageTag</h2>\n    <p>A version tag contains the mapping between a tag name and a version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the tag name of the version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Version that the tag is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversion\">\n      <a href=\"#packageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersion</h2>\n    <p>Information about a specific package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagefileconnection\">PackageFileConnection!</a></code>)</p></td>\n<td><p>List of files associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packagefileorder\">PackageFileOrder</a></code>)</p>\n<p>Ordering of the returned package files.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The package associated with this version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The platform this version was built for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preRelease</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this version is a pre-release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readme</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The README of this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The release associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversionstatistics\">PackageVersionStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The package version summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The version string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionconnection\">\n      <a href=\"#packageversionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionConnection</h2>\n    <p>The connection type for PackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversionedge\">[PackageVersionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">[PackageVersion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionedge\">\n      <a href=\"#packageversionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionstatistics\">\n      <a href=\"#packageversionstatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionStatistics</h2>\n    <p>Represents a object that contains package version activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussion\">\n      <a href=\"#pinneddiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussion</h2>\n    <p>A Pinned Discussion is a discussion pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion!</a></code>)</p></td>\n<td><p>The discussion that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gradientStopColors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Color stops of the chosen gradient.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinneddiscussionpattern\">PinnedDiscussionPattern!</a></code>)</p></td>\n<td><p>Background texture pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preconfiguredGradient</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinneddiscussiongradient\">PinnedDiscussionGradient</a></code>)</p></td>\n<td><p>Preconfigured background gradient option.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionconnection\">\n      <a href=\"#pinneddiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionConnection</h2>\n    <p>The connection type for PinnedDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinneddiscussionedge\">[PinnedDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinneddiscussion\">[PinnedDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionedge\">\n      <a href=\"#pinneddiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinneddiscussion\">PinnedDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnext\">\n      <a href=\"#projectnext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNext</h2>\n    <p>New projects that manage issues, pull requests and drafts using tables and boards.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if the project is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fields</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfieldconnection\">ProjectNextFieldConnection!</a></code>)</p></td>\n<td><p>List of fields in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of items in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if the project is public.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>The repositories the project is linked to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s short description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextconnection\">\n      <a href=\"#projectnextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextConnection</h2>\n    <p>The connection type for ProjectNext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextedge\">[ProjectNextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">[ProjectNext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextedge\">\n      <a href=\"#projectnextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfield\">\n      <a href=\"#projectnextfield\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextField</h2>\n    <p>A field inside a project.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project field&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settings</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The field&apos;s settings.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfieldconnection\">\n      <a href=\"#projectnextfieldconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextFieldConnection</h2>\n    <p>The connection type for ProjectNextField.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfieldedge\">[ProjectNextFieldEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfield\">[ProjectNextField]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfieldedge\">\n      <a href=\"#projectnextfieldedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextFieldEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfield\">ProjectNextField</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitem\">\n      <a href=\"#projectnextitem\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItem</h2>\n    <p>An item within a new Project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#projectnextitemcontent\">ProjectNextItemContent</a></code>)</p></td>\n<td><p>The content of the referenced issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fieldValues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemfieldvalueconnection\">ProjectNextItemFieldValueConnection!</a></code>)</p></td>\n<td><p>List of field values.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the item is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext!</a></code>)</p></td>\n<td><p>The project that contains this item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemconnection\">\n      <a href=\"#projectnextitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemConnection</h2>\n    <p>The connection type for ProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemedge\">[ProjectNextItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitem\">[ProjectNextItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemedge\">\n      <a href=\"#projectnextitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitem\">ProjectNextItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalue\">\n      <a href=\"#projectnextitemfieldvalue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValue</h2>\n    <p>An value of a field in an item of a new Project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectField</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfield\">ProjectNextField!</a></code>)</p></td>\n<td><p>The project field that contains this value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectItem</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitem\">ProjectNextItem!</a></code>)</p></td>\n<td><p>The project item that contains this value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The value of a field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalueconnection\">\n      <a href=\"#projectnextitemfieldvalueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValueConnection</h2>\n    <p>The connection type for ProjectNextItemFieldValue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemfieldvalueedge\">[ProjectNextItemFieldValueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemfieldvalue\">[ProjectNextItemFieldValue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalueedge\">\n      <a href=\"#projectnextitemfieldvalueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemfieldvalue\">ProjectNextItemFieldValue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLinkedOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Return only manually linked Issues.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of project (beta) items associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Include archived items.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>Identifies the pull request title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The latest review given from the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReviewRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The person who has requested the viewer for review on this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttemplate\">\n      <a href=\"#pullrequesttemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTemplate</h2>\n    <p>A repository pull request template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The filename of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the template belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactorconnection\">ReactorConnection!</a></code>)</p></td>\n<td><p>Reactors to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>users</code> is deprecated.</p><p>Reactors can now be mannequins, bots, and organizations. Use the <code>reactors</code> field instead. Removal on 2021-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactorconnection\">\n      <a href=\"#reactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorConnection</h2>\n    <p>The connection type for Reactor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactoredge\">[ReactorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#reactor\">[Reactor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactoredge\">\n      <a href=\"#reactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorEdge</h2>\n    <p>Represents an author of a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#reactor\">Reactor!</a></code>)</p></td>\n<td><p>The author of the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerAllowedToDismissReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the viewer allowed to dismiss reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection</a></code>)</p></td>\n<td><p>A list of users mentioned in the release description.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not Auto-merge can be enabled on pull requests in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeowners</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycodeowners\">RepositoryCodeowners</a></code>)</p></td>\n<td><p>Information extracted from the repository&apos;s <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The ref name used to return the associated <code>CODEOWNERS</code> file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependencyGraphManifests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphmanifestconnection\">DependencyGraphManifestConnection</a></code>)</p></td>\n<td><p>A list of dependency manifests contained in the repository.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>dependencyGraphManifests</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>dependenciesAfter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Cursor to paginate dependencies.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>dependenciesFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Number of dependencies to fetch.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>withDependencies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Flag to scope to only manifests with dependencies.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>Returns a single discussion from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the discussion to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCategories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategoryconnection\">DiscussionCategoryConnection!</a></code>)</p></td>\n<td><p>A list of discussion categories that are available in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterByAssignable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by categories that are assignable by the viewer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>categoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Only include discussions that belong to the category with this ID.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>Returns a single active environment from the current repository by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the environment to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>A list of environments that are in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository allows forks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fundingLinks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#fundinglink\">[FundingLink!]!</a></code>)</p></td>\n<td><p>The funding links for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedDiscussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinneddiscussionconnection\">PinnedDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been pinned in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Finds and returns the Project (beta) according to the provided Project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The ProjectNext number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>List of projects (beta) linked to this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for linked to the repo.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned project (beta) objects.</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestTemplates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttemplate\">[PullRequestTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of pull request templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvulnerabilityalertstate\">[RepositoryVulnerabilityAlertState!]</a></code>)</p>\n<p>Filter by the state of the alert.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeowners\">\n      <a href=\"#repositorycodeowners\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeowners</h2>\n    <p>Information extracted from a repository&apos;s <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>errors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycodeownerserror\">[RepositoryCodeownersError!]!</a></code>)</p></td>\n<td><p>Any problems that were encountered while parsing the <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeownerserror\">\n      <a href=\"#repositorycodeownerserror\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeownersError</h2>\n    <p>An error in a <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The column number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short string describing the type of error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A complete description of the error, combining information from other fields.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to the file when the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the line where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A suggestion of how to fix the error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinteractionability\">\n      <a href=\"#repositoryinteractionability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInteractionAbility</h2>\n    <p>Repository interaction limit that applies to this object.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time the currently active limit expires.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The current limit that is enabled on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimitorigin\">RepositoryInteractionLimitOrigin!</a></code>)</p></td>\n<td><p>The origin of the currently active interaction limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigration\">\n      <a href=\"#repositorymigration\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigration</h2>\n    <p>An Octoshift repository migration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#migration\">Migration</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The Octoshift migration flag to continue on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>failureReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the migration failed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>migrationSource</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#migrationsource\">MigrationSource!</a></code>)</p></td>\n<td><p>The Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#migrationstate\">MigrationState!</a></code>)</p></td>\n<td><p>The Octoshift migration state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationconnection\">\n      <a href=\"#repositorymigrationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationConnection</h2>\n    <p>The connection type for RepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorymigrationedge\">[RepositoryMigrationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorymigration\">[RepositoryMigration]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationedge\">\n      <a href=\"#repositorymigrationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationEdge</h2>\n    <p>Represents a repository migration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorymigration\">RepositoryMigration</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was marked as fixed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert fixed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the alert number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvulnerabilityalertstate\">RepositoryVulnerabilityAlertState!</a></code>)</p></td>\n<td><p>Identifies the state of the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckdescription\">\n      <a href=\"#requiredstatuscheckdescription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckDescription</h2>\n    <p>Represents a required status check for a protected branch, but not any specific run of that check.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The App that must provide this status in order for it to be accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of discussions that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#securityvulnerabilityorder\">SecurityVulnerabilityOrder</a></code>)</p>\n<p>Ordering options for the returned topics.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorconnection\">\n      <a href=\"#sponsorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorConnection</h2>\n    <p>The connection type for Sponsor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsoredge\">[SponsorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsor\">[Sponsor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsoredge\">\n      <a href=\"#sponsoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorEdge</h2>\n    <p>Represents a user or organization who is sponsoring someone in GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableitemconnection\">\n      <a href=\"#sponsorableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableItemConnection</h2>\n    <p>The connection type for SponsorableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorableitemedge\">[SponsorableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsorableitem\">[SponsorableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableitemedge\">\n      <a href=\"#sponsorableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsorableitem\">SponsorableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivity\">\n      <a href=\"#sponsorsactivity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivity</h2>\n    <p>An event related to sponsorship activity.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsactivityaction\">SponsorsActivityAction!</a></code>)</p></td>\n<td><p>What action this activity indicates took place.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSponsorsTier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The tier that the sponsorship used to use, for tier change events.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization who triggered this activity and was/is sponsoring the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The user or organization that is being sponsored, the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsTier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The associated sponsorship tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timestamp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The timestamp of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityconnection\">\n      <a href=\"#sponsorsactivityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityConnection</h2>\n    <p>The connection type for SponsorsActivity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivityedge\">[SponsorsActivityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivity\">[SponsorsActivity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityedge\">\n      <a href=\"#sponsorsactivityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivity\">SponsorsActivity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsgoal\">\n      <a href=\"#sponsorsgoal\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsGoal</h2>\n    <p>A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of the goal from the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsgoalkind\">SponsorsGoalKind!</a></code>)</p></td>\n<td><p>What the objective of this goal is.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>percentComplete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The percentage representing how complete this goal is, between 0-100.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A brief summary of the kind and target value of this goal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorslisting\">\n      <a href=\"#sponsorslisting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsListing</h2>\n    <p>A GitHub Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeGoal</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsgoal\">SponsorsGoal</a></code>)</p></td>\n<td><p>The current goal the maintainer is trying to reach with GitHub Sponsors, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full description of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The full description of the listing rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s full name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nextPayoutDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>A future date on which this listing is eligible to receive a payout.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short description of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity this listing represents who can be sponsored on GitHub Sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tiers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstierconnection\">SponsorsTierConnection</a></code>)</p></td>\n<td><p>The published tiers for this GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorstierorder\">SponsorsTierOrder</a></code>)</p>\n<p>Ordering options for Sponsors tiers returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstier\">\n      <a href=\"#sponsorstier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTier</h2>\n    <p>A GitHub Sponsors tier associated with a GitHub Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstieradmininfo\">SponsorsTierAdminInfo</a></code>)</p></td>\n<td><p>SponsorsTier information only visible to users that can administer the associated Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closestLesserValueTier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>Get a different tier for this tier&apos;s maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier&apos;s without going over.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The description of the tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The tier description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCustomAmount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOneTime</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this tier is only for use with one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyPriceInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How much this tier costs per month in cents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyPriceInDollars</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How much this tier costs per month in USD.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorslisting\">SponsorsListing!</a></code>)</p></td>\n<td><p>The sponsors listing that this tier belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstieradmininfo\">\n      <a href=\"#sponsorstieradmininfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierAdminInfo</h2>\n    <p>SponsorsTier information only visible to users that can administer the associated Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>sponsorships</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>The sponsorships associated with this tier.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstierconnection\">\n      <a href=\"#sponsorstierconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierConnection</h2>\n    <p>The connection type for SponsorsTier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstieredge\">[SponsorsTierEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">[SponsorsTier]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstieredge\">\n      <a href=\"#sponsorstieredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorship\">\n      <a href=\"#sponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Sponsorship</h2>\n    <p>A sponsorship relationship between a sponsor and a maintainer.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOneTimePayment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this sponsorship represents a one-time payment versus a recurring sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsorOptedIntoEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>maintainer</code> is deprecated.</p><p><code>Sponsorship.maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead. Removal on 2020-04-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy!</a></code>)</p></td>\n<td><p>The privacy level for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>sponsor</code> is deprecated.</p><p><code>Sponsorship.sponsor</code> will be removed. Use <code>Sponsorship.sponsorEntity</code> instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorEntity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization that is sponsoring, if you have permission to view them.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The associated sponsorship tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tierSelectedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the current tier was chosen for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipconnection\">\n      <a href=\"#sponsorshipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipConnection</h2>\n    <p>The connection type for Sponsorship.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipedge\">[SponsorshipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">[Sponsorship]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRecurringMonthlyPriceInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRecurringMonthlyPriceInDollars</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipedge\">\n      <a href=\"#sponsorshipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletter\">\n      <a href=\"#sponsorshipnewsletter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletter</h2>\n    <p>An update sent to sponsors of a user or organization on GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the newsletter, the message the sponsorable wanted to give.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublished</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the newsletter has been made available to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The user or organization this newsletter is from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The subject of the newsletter, what it&apos;s about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletterconnection\">\n      <a href=\"#sponsorshipnewsletterconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterConnection</h2>\n    <p>The connection type for SponsorshipNewsletter.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletteredge\">[SponsorshipNewsletterEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletter\">[SponsorshipNewsletter]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletteredge\">\n      <a href=\"#sponsorshipnewsletteredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletter\">SponsorshipNewsletter</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sponsorableOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canReceiveOrganizationEmailsWhenNotificationsRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Could this user receive email notifications, if the organization had notification restrictions enabled?.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to check.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>estimatedNextSponsorsPayoutInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasSponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if this user/organization has a GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFollowingViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is following the viewer. Inverse of viewer_is_following.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoredBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the given account is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>accountLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The target account&apos;s login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoringViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsored by this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyEstimatedSponsorsIncomeInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsoring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of users and organizations this entity is sponsoring.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for the users and organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of sponsors for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for sponsors returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tierId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsActivities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivityconnection\">SponsorsActivityConnection!</a></code>)</p></td>\n<td><p>Events involving this sponsorable, such as new sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorsactivityorder\">SponsorsActivityOrder</a></code>)</p>\n<p>Ordering options for activity returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>period</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsactivityperiod\">SponsorsActivityPeriod</a></code>)</p>\n<p>Filter activities returned to only those that occurred in a given time range.</p>\n<p>The default value is <code>MONTH</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorslisting\">SponsorsListing</a></code>)</p></td>\n<td><p>The GitHub Sponsors listing for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you&apos;re the sponsor. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you&apos;re receiving. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipNewsletters</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletterconnection\">SponsorshipNewsletterConnection!</a></code>)</p></td>\n<td><p>List of sponsorship updates sent from this sponsorable to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshipnewsletterorder\">SponsorshipNewsletterOrder</a></code>)</p>\n<p>Ordering options for sponsorship updates returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to sponsor this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer. Inverse of is_following_viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsSponsoring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomain\">\n      <a href=\"#verifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomain</h2>\n    <p>A domain that can be verified or approved for an organization or an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dnsHostName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The DNS host name that should be used for verification.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The unicode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundHostName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected host name was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundVerificationToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected verification token was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isApproved</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is approved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequiredForPolicyEnforcement</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this domain is required to exist for an organization or enterprise policy to be enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner!</a></code>)</p></td>\n<td><p>The owner of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>punycodeEncodedDomain</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The punycode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tokenExpirationTime</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the current verification token will expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current verification token for the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainconnection\">\n      <a href=\"#verifiabledomainconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainConnection</h2>\n    <p>The connection type for VerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomainedge\">[VerifiableDomainEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomain\">[VerifiableDomain]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainedge\">\n      <a href=\"#verifiabledomainedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflow\">\n      <a href=\"#workflow\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Workflow</h2>\n    <p>A workflow contains meta information about an Actions workflow file.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflowrun\">\n      <a href=\"#workflowrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>WorkflowRun</h2>\n    <p>A workflow run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite this workflow run belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreviewconnection\">DeploymentReviewConnection!</a></code>)</p></td>\n<td><p>The log of deployment reviews.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequestconnection\">DeploymentRequestConnection!</a></code>)</p></td>\n<td><p>The pending deployment requests of all check runs in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>runNumber</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number that uniquely identifies this workflow run in its parent workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflow</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#workflow\">Workflow!</a></code>)</p></td>\n<td><p>The workflow executed in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
+    "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses of the app.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushAllowances</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypassforcepushallowanceconnection\">BypassForcePushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to force push for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestAllowances</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypasspullrequestallowanceconnection\">BypassPullRequestAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to bypass PRs for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#requiredstatuscheckdescription\">[RequiredStatusCheckDescription!]</a></code>)</p></td>\n<td><p>List of required status checks that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowance\">\n      <a href=\"#bypassforcepushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowance</h2>\n    <p>A team or user who has the ability to bypass a force push requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceconnection\">\n      <a href=\"#bypassforcepushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceConnection</h2>\n    <p>The connection type for BypassForcePushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypassforcepushallowanceedge\">[BypassForcePushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypassforcepushallowance\">[BypassForcePushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceedge\">\n      <a href=\"#bypassforcepushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypassforcepushallowance\">BypassForcePushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowance\">\n      <a href=\"#bypasspullrequestallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowance</h2>\n    <p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceconnection\">\n      <a href=\"#bypasspullrequestallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceConnection</h2>\n    <p>The connection type for BypassPullRequestAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypasspullrequestallowanceedge\">[BypassPullRequestAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypasspullrequestallowance\">[BypassPullRequestAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceedge\">\n      <a href=\"#bypasspullrequestallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#bypasspullrequestallowance\">BypassPullRequestAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The corresponding deployment for this job, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>Information about a pending deployment, if any, in this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>steps</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkstepconnection\">CheckStepConnection</a></code>)</p></td>\n<td><p>The check run&apos;s steps.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Step number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstep\">\n      <a href=\"#checkstep\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStep</h2>\n    <p>A single check step.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check step on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The step&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The index of the step in the list of steps of the parent check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondsToCompletion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of seconds to completion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepconnection\">\n      <a href=\"#checkstepconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepConnection</h2>\n    <p>The connection type for CheckStep.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkstepedge\">[CheckStepEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkstep\">[CheckStep]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepedge\">\n      <a href=\"#checkstepedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkstep\">CheckStep</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who triggered the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRun</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#workflowrun\">WorkflowRun</a></code>)</p></td>\n<td><p>The workflow run associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertedtodiscussionevent\">\n      <a href=\"#convertedtodiscussionevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedToDiscussionEvent</h2>\n    <p>Represents a<code>converted_to_discussion</code>event on a given issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that the issue was converted into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependency\">\n      <a href=\"#dependencygraphdependency\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependency</h2>\n    <p>A dependency manifest entry.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependency</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasDependencies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the dependency itself have dependencies?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageLabel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The original name of the package, as it appears in the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageManager</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The dependency package manager.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository containing the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requirements</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The dependency version requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependencyconnection\">\n      <a href=\"#dependencygraphdependencyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependencyConnection</h2>\n    <p>The connection type for DependencyGraphDependency.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependencyConnection</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphdependencyedge\">[DependencyGraphDependencyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphdependency\">[DependencyGraphDependency]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphdependencyedge\">\n      <a href=\"#dependencygraphdependencyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphDependencyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphDependencyEdge</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphdependency\">DependencyGraphDependency</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifest\">\n      <a href=\"#dependencygraphmanifest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifest</h2>\n    <p>Dependency manifest for a repository.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifest</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>blobPath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Path to view the manifest file blob.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependencies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphdependencyconnection\">DependencyGraphDependencyConnection</a></code>)</p></td>\n<td><p>A list of manifest dependencies.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependenciesCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of dependencies listed in the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>exceedsMaxSize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the manifest too big to parse?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Fully qualified manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parseable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Were we able to parse the manifest?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the manifest.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifestconnection\">\n      <a href=\"#dependencygraphmanifestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifestConnection</h2>\n    <p>The connection type for DependencyGraphManifest.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifestConnection</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphmanifestedge\">[DependencyGraphManifestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphmanifest\">[DependencyGraphManifest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"dependencygraphmanifestedge\">\n      <a href=\"#dependencygraphmanifestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DependencyGraphManifestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>DependencyGraphManifestEdge</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphmanifest\">DependencyGraphManifest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionrule\">\n      <a href=\"#deploymentprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRule</h2>\n    <p>A protection rule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeout</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The timeout in minutes for this protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentprotectionruletype\">DeploymentProtectionRuleType!</a></code>)</p></td>\n<td><p>The type of protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleconnection\">\n      <a href=\"#deploymentprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleConnection</h2>\n    <p>The connection type for DeploymentProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentprotectionruleedge\">[DeploymentProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentprotectionrule\">[DeploymentProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleedge\">\n      <a href=\"#deploymentprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentprotectionrule\">DeploymentProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequest\">\n      <a href=\"#deploymentrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequest</h2>\n    <p>A request to deploy a workflow run to an environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>currentUserCanApprove</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can approve the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">Environment!</a></code>)</p></td>\n<td><p>The target environment of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimerStartedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestconnection\">\n      <a href=\"#deploymentrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestConnection</h2>\n    <p>The connection type for DeploymentRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequestedge\">[DeploymentRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequest\">[DeploymentRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestedge\">\n      <a href=\"#deploymentrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreview\">\n      <a href=\"#deploymentreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReview</h2>\n    <p>A deployment review.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>The environments approved or rejected.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentreviewstate\">DeploymentReviewState!</a></code>)</p></td>\n<td><p>The decision of the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that reviewed the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewconnection\">\n      <a href=\"#deploymentreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewConnection</h2>\n    <p>The connection type for DeploymentReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreviewedge\">[DeploymentReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreview\">[DeploymentReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewedge\">\n      <a href=\"#deploymentreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreview\">DeploymentReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewerconnection\">\n      <a href=\"#deploymentreviewerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerConnection</h2>\n    <p>The connection type for DeploymentReviewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrevieweredge\">[DeploymentReviewerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#deploymentreviewer\">[DeploymentReviewer]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrevieweredge\">\n      <a href=\"#deploymentrevieweredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#deploymentreviewer\">DeploymentReviewer</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussion\">\n      <a href=\"#discussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Discussion</h2>\n    <p>A discussion in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The comment chosen as this discussion&apos;s answer, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when a user chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The main text of the discussion post.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>category</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategory\">DiscussionCategory!</a></code>)</p></td>\n<td><p>The category for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The replies to the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number identifying this discussion within the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategory\">\n      <a href=\"#discussioncategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategory</h2>\n    <p>A category for discussions in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An emoji representing this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>This category&apos;s emoji rendered as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswerable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryconnection\">\n      <a href=\"#discussioncategoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryConnection</h2>\n    <p>The connection type for DiscussionCategory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategoryedge\">[DiscussionCategoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategory\">[DiscussionCategory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryedge\">\n      <a href=\"#discussioncategoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategory\">DiscussionCategory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncomment\">\n      <a href=\"#discussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionComment</h2>\n    <p>A comment on a discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when this replied-to comment was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion this comment was created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Has this comment been chosen as the answer of its discussion?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The threaded replies to this comment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment this comment is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMarkAsAnswer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user mark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnmarkAsAnswer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user unmark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentconnection\">\n      <a href=\"#discussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentConnection</h2>\n    <p>The connection type for DiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentedge\">[DiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">[DiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentedge\">\n      <a href=\"#discussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionconnection\">\n      <a href=\"#discussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionConnection</h2>\n    <p>The connection type for Discussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussionedge\">[DiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">[Discussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionedge\">\n      <a href=\"#discussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>viewerOrganizationRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The viewer&apos;s role in an organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided base repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection!</a></code>)</p></td>\n<td><p>A list of domains owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallationconnection\">EnterpriseServerInstallationConnection!</a></code>)</p></td>\n<td><p>Enterprise Server installations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>connectedOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to only return installations discovered via GitHub Connect.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseserverinstallationorder\">EnterpriseServerInstallationOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server installations returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the base repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oidcProvider</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#oidcprovider\">OIDCProvider</a></code>)</p></td>\n<td><p>The OIDC Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportEntitlements</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of members with a support entitlement.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for support entitlement users returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationconnection\">\n      <a href=\"#enterpriseserverinstallationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationConnection</h2>\n    <p>The connection type for EnterpriseServerInstallation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallationedge\">[EnterpriseServerInstallationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallation\">[EnterpriseServerInstallation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallationedge\">\n      <a href=\"#enterpriseserverinstallationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environment\">\n      <a href=\"#environment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Environment</h2>\n    <p>An environment.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>protectionRules</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentprotectionruleconnection\">DeploymentProtectionRuleConnection!</a></code>)</p></td>\n<td><p>The protection rules defined for this environment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentconnection\">\n      <a href=\"#environmentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentConnection</h2>\n    <p>The connection type for Environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environmentedge\">[EnvironmentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">[Environment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentedge\">\n      <a href=\"#environmentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"fundinglink\">\n      <a href=\"#fundinglink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FundingLink</h2>\n    <p>A funding platform link for a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#fundingplatform\">FundingPlatform!</a></code>)</p></td>\n<td><p>The funding platform this link is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The configured URL for this funding link.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitIpAddresses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that users connect to for git operations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hookIpAddresses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that service hooks are sent from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>importerIpAddresses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses that the importer connects from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pagesIpAddresses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>IP addresses for GitHub Pages&apos; A records.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of project (beta) items associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Include archived items.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>claimant</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that has claimed the data attributed to this mannequin.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacecategory\">\n      <a href=\"#marketplacecategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceCategory</h2>\n    <p>A public description of a Marketplace category.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The category&apos;s description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The technical description of how apps listed in this category work with GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The category&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryListingCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many Marketplace listings have this as their primary category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Marketplace category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondaryListingCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many Marketplace listings have this as their secondary category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the category used in its URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Marketplace category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelisting\">\n      <a href=\"#marketplacelisting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListing</h2>\n    <p>A listing in the GitHub integration marketplace.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App this listing represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing owner&apos;s company site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>configurationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for configuring access to the listing&apos;s integration or OAuth app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>configurationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for configuring access to the listing&apos;s integration or OAuth app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>documentationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s documentation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extendedDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The listing&apos;s detailed description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extendedDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s detailed description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s introductory description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s introductory description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPublishedFreeTrialPlans</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does this listing have any plans with a free trial?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTermsOfService</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does this listing have a terms of service link?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasVerifiedOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the creator of the app is a verified org.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A technical description of how this app works with GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>howItWorksHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The listing&apos;s technical description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>installationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to install the product to the viewer&apos;s account or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>installedForViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing&apos;s app has been installed for the current viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been removed from the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPaid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the product this listing represents is available as part of a paid plan.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRejected</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been rejected by GitHub for display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnverified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for unverified display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnverifiedPending</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerificationPendingFromDraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerificationPendingFromUnverified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing has been approved for verified display in the Marketplace.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL for the listing&apos;s logo image.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s full name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>normalizedShortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s very short description without a trailing period or ampersands.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pricingUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s detailed pricing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryCategory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacecategory\">MarketplaceCategory!</a></code>)</p></td>\n<td><p>The category that best describes the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyPolicyUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>URL to the listing&apos;s privacy policy, may return an empty string for listings that do not require a privacy policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>screenshotUrls</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]!</a></code>)</p></td>\n<td><p>The URLs for the listing&apos;s screenshots.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondaryCategory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacecategory\">MarketplaceCategory</a></code>)</p></td>\n<td><p>An alternate category that describes the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s very short description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the listing used in its URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s status page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An email address for support for this listing&apos;s app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>supportUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Either a URL or an email address for support for this listing&apos;s app, may\nreturn an empty string for listings that do not require a support URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>termsOfServiceUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the listing&apos;s terms of service.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAddPlans</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer add plans for this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApprove</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer approve this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelist</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer delist this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEditCategories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit the primary and secondary category of this\nMarketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEditPlans</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer edit the plans for this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanRedraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanRequestApproval</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasPurchased</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current user has an active subscription to this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasPurchasedForAllOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsListingAdmin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the current viewer role allow them to administer this Marketplace listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelistingconnection\">\n      <a href=\"#marketplacelistingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListingConnection</h2>\n    <p>Look up Marketplace Listings.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacelistingedge\">[MarketplaceListingEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacelisting\">[MarketplaceListing]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"marketplacelistingedge\">\n      <a href=\"#marketplacelistingedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarketplaceListingEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#marketplacelisting\">MarketplaceListing</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"migrationsource\">\n      <a href=\"#migrationsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MigrationSource</h2>\n    <p>An Octoshift migration source.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oidcprovider\">\n      <a href=\"#oidcprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OIDCProvider</h2>\n    <p>An OIDC identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>providerType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#oidcprovidertype\">OIDCProviderType!</a></code>)</p></td>\n<td><p>The OIDC identity provider type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tenantId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the tenant this provider is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection</a></code>)</p></td>\n<td><p>A list of domains owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseOwners</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationenterpriseownerconnection\">OrganizationEnterpriseOwnerConnection!</a></code>)</p></td>\n<td><p>A list of owners of the organization&apos;s enterprise account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#orgenterpriseownerorder\">OrgEnterpriseOwnerOrder</a></code>)</p>\n<p>Ordering options for enterprise owners returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The organization role to filter by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>estimatedNextSponsorsPayoutInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasSponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if this user/organization has a GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoredBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the given account is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>accountLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The target account&apos;s login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoringViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsored by this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the organization has verified its profile email and website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanForkPrivateRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Members can fork private repositories in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyEstimatedSponsorsIncomeInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this organization is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryMigrations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorymigrationconnection\">RepositoryMigrationConnection!</a></code>)</p></td>\n<td><p>A list of all repository migrations for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositorymigrationorder\">RepositoryMigrationOrder</a></code>)</p>\n<p>Ordering options for repository migrations returned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#migrationstate\">MigrationState</a></code>)</p>\n<p>Filter repository migrations by state.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsoring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of users and organizations this entity is sponsoring.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for the users and organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of sponsors for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for sponsors returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tierId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsActivities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivityconnection\">SponsorsActivityConnection!</a></code>)</p></td>\n<td><p>Events involving this sponsorable, such as new sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorsactivityorder\">SponsorsActivityOrder</a></code>)</p>\n<p>Ordering options for activity returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>period</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsactivityperiod\">SponsorsActivityPeriod</a></code>)</p>\n<p>Filter activities returned to only those that occurred in a given time range.</p>\n<p>The default value is <code>MONTH</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorslisting\">SponsorsListing</a></code>)</p></td>\n<td><p>The GitHub Sponsors listing for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you&apos;re the sponsor. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you&apos;re receiving. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipNewsletters</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletterconnection\">SponsorshipNewsletterConnection!</a></code>)</p></td>\n<td><p>List of sponsorship updates sent from this sponsorable to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshipnewsletterorder\">SponsorshipNewsletterOrder</a></code>)</p>\n<p>Ordering options for sponsorship updates returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to sponsor this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsSponsoring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>A list of organizations managed by an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseownerconnection\">\n      <a href=\"#organizationenterpriseownerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationenterpriseowneredge\">[OrganizationEnterpriseOwnerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseowneredge\">\n      <a href=\"#organizationenterpriseowneredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerEdge</h2>\n    <p>An enterprise owner in the context of an organization that is part of the enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role of the owner with respect to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"package\">\n      <a href=\"#package\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Package</h2>\n    <p>Information for an uploaded package.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>latestVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find the latest version for the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagetype\">PackageType!</a></code>)</p></td>\n<td><p>Identifies the type of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this package belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagestatistics\">PackageStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find package version by version string.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>version</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The package version.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>versions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversionconnection\">PackageVersionConnection!</a></code>)</p></td>\n<td><p>list of versions for this package.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packageversionorder\">PackageVersionOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageconnection\">\n      <a href=\"#packageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageConnection</h2>\n    <p>The connection type for Package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageedge\">[PackageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#package\">[Package]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageedge\">\n      <a href=\"#packageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefile\">\n      <a href=\"#packagefile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFile</h2>\n    <p>A file in a package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>md5</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>MD5 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Name of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The package version this file belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha1</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA1 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha256</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA256 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Size of the file in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to download the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileconnection\">\n      <a href=\"#packagefileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileConnection</h2>\n    <p>The connection type for PackageFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagefileedge\">[PackageFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagefile\">[PackageFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileedge\">\n      <a href=\"#packagefileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagefile\">PackageFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagestatistics\">\n      <a href=\"#packagestatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageStatistics</h2>\n    <p>Represents a object that contains package activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagetag\">\n      <a href=\"#packagetag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageTag</h2>\n    <p>A version tag contains the mapping between a tag name and a version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the tag name of the version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Version that the tag is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversion\">\n      <a href=\"#packageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersion</h2>\n    <p>Information about a specific package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packagefileconnection\">PackageFileConnection!</a></code>)</p></td>\n<td><p>List of files associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packagefileorder\">PackageFileOrder</a></code>)</p>\n<p>Ordering of the returned package files.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The package associated with this version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The platform this version was built for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preRelease</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this version is a pre-release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readme</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The README of this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The release associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversionstatistics\">PackageVersionStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The package version summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The version string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionconnection\">\n      <a href=\"#packageversionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionConnection</h2>\n    <p>The connection type for PackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversionedge\">[PackageVersionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">[PackageVersion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionedge\">\n      <a href=\"#packageversionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionstatistics\">\n      <a href=\"#packageversionstatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionStatistics</h2>\n    <p>Represents a object that contains package version activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussion\">\n      <a href=\"#pinneddiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussion</h2>\n    <p>A Pinned Discussion is a discussion pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion!</a></code>)</p></td>\n<td><p>The discussion that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gradientStopColors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Color stops of the chosen gradient.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinneddiscussionpattern\">PinnedDiscussionPattern!</a></code>)</p></td>\n<td><p>Background texture pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preconfiguredGradient</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinneddiscussiongradient\">PinnedDiscussionGradient</a></code>)</p></td>\n<td><p>Preconfigured background gradient option.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionconnection\">\n      <a href=\"#pinneddiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionConnection</h2>\n    <p>The connection type for PinnedDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinneddiscussionedge\">[PinnedDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinneddiscussion\">[PinnedDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionedge\">\n      <a href=\"#pinneddiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinneddiscussion\">PinnedDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnext\">\n      <a href=\"#projectnext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNext</h2>\n    <p>New projects that manage issues, pull requests and drafts using tables and boards.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if the project is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fields</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfieldconnection\">ProjectNextFieldConnection!</a></code>)</p></td>\n<td><p>List of fields in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of items in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>public</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if the project is public.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>The repositories the project is linked to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s short description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextconnection\">\n      <a href=\"#projectnextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextConnection</h2>\n    <p>The connection type for ProjectNext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextedge\">[ProjectNextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">[ProjectNext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextedge\">\n      <a href=\"#projectnextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfield\">\n      <a href=\"#projectnextfield\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextField</h2>\n    <p>A field inside a project.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project field&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>settings</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The field&apos;s settings.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfieldconnection\">\n      <a href=\"#projectnextfieldconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextFieldConnection</h2>\n    <p>The connection type for ProjectNextField.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfieldedge\">[ProjectNextFieldEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfield\">[ProjectNextField]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextfieldedge\">\n      <a href=\"#projectnextfieldedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextFieldEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfield\">ProjectNextField</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitem\">\n      <a href=\"#projectnextitem\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItem</h2>\n    <p>An item within a new Project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#projectnextitemcontent\">ProjectNextItemContent</a></code>)</p></td>\n<td><p>The content of the referenced issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fieldValues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemfieldvalueconnection\">ProjectNextItemFieldValueConnection!</a></code>)</p></td>\n<td><p>List of field values.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the item is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext!</a></code>)</p></td>\n<td><p>The project that contains this item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemconnection\">\n      <a href=\"#projectnextitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemConnection</h2>\n    <p>The connection type for ProjectNextItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemedge\">[ProjectNextItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitem\">[ProjectNextItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemedge\">\n      <a href=\"#projectnextitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitem\">ProjectNextItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalue\">\n      <a href=\"#projectnextitemfieldvalue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValue</h2>\n    <p>An value of a field in an item of a new Project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectField</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextfield\">ProjectNextField!</a></code>)</p></td>\n<td><p>The project field that contains this value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectItem</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitem\">ProjectNextItem!</a></code>)</p></td>\n<td><p>The project item that contains this value.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The value of a field.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalueconnection\">\n      <a href=\"#projectnextitemfieldvalueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValueConnection</h2>\n    <p>The connection type for ProjectNextItemFieldValue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemfieldvalueedge\">[ProjectNextItemFieldValueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemfieldvalue\">[ProjectNextItemFieldValue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectnextitemfieldvalueedge\">\n      <a href=\"#projectnextitemfieldvalueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectNextItemFieldValueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemfieldvalue\">ProjectNextItemFieldValue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLinkedOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Return only manually linked Issues.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNextItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextitemconnection\">ProjectNextItemConnection!</a></code>)</p></td>\n<td><p>List of project (beta) items associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Include archived items.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>Identifies the pull request title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMergeAsAdmin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can bypass branch protections and merge the pull request immediately.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The latest review given from the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReviewRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The person who has requested the viewer for review on this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttemplate\">\n      <a href=\"#pullrequesttemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTemplate</h2>\n    <p>A repository pull request template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The filename of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the template belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactorconnection\">ReactorConnection!</a></code>)</p></td>\n<td><p>Reactors to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>users</code> is deprecated.</p><p>Reactors can now be mannequins, bots, and organizations. Use the <code>reactors</code> field instead. Removal on 2021-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactorconnection\">\n      <a href=\"#reactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorConnection</h2>\n    <p>The connection type for Reactor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactoredge\">[ReactorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#reactor\">[Reactor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactoredge\">\n      <a href=\"#reactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorEdge</h2>\n    <p>Represents an author of a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#reactor\">Reactor!</a></code>)</p></td>\n<td><p>The author of the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerAllowedToDismissReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the viewer allowed to dismiss reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection</a></code>)</p></td>\n<td><p>A list of users mentioned in the release description.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not Auto-merge can be enabled on pull requests in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeowners</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycodeowners\">RepositoryCodeowners</a></code>)</p></td>\n<td><p>Information extracted from the repository&apos;s <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The ref name used to return the associated <code>CODEOWNERS</code> file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dependencyGraphManifests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#dependencygraphmanifestconnection\">DependencyGraphManifestConnection</a></code>)</p></td>\n<td><p>A list of dependency manifests contained in the repository.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>dependencyGraphManifests</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#access-to-a-repositories-dependency-graph-preview\">Access to a repositories dependency graph preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>dependenciesAfter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Cursor to paginate dependencies.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>dependenciesFirst</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Number of dependencies to fetch.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>withDependencies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Flag to scope to only manifests with dependencies.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>Returns a single discussion from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the discussion to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCategories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncategoryconnection\">DiscussionCategoryConnection!</a></code>)</p></td>\n<td><p>A list of discussion categories that are available in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterByAssignable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by categories that are assignable by the viewer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>categoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Only include discussions that belong to the category with this ID.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>Returns a single active environment from the current repository by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the environment to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>A list of environments that are in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository allows forks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fundingLinks</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#fundinglink\">[FundingLink!]!</a></code>)</p></td>\n<td><p>The funding links for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedDiscussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinneddiscussionconnection\">PinnedDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been pinned in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Finds and returns the Project (beta) according to the provided Project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The ProjectNext number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>List of projects (beta) linked to this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for linked to the repo.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned project (beta) objects.</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestTemplates</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequesttemplate\">[PullRequestTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of pull request templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvulnerabilityalertstate\">[RepositoryVulnerabilityAlertState!]</a></code>)</p>\n<p>Filter by the state of the alert.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeowners\">\n      <a href=\"#repositorycodeowners\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeowners</h2>\n    <p>Information extracted from a repository&apos;s <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>errors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycodeownerserror\">[RepositoryCodeownersError!]!</a></code>)</p></td>\n<td><p>Any problems that were encountered while parsing the <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeownerserror\">\n      <a href=\"#repositorycodeownerserror\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeownersError</h2>\n    <p>An error in a <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The column number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short string describing the type of error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A complete description of the error, combining information from other fields.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to the file when the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the line where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A suggestion of how to fix the error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinteractionability\">\n      <a href=\"#repositoryinteractionability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInteractionAbility</h2>\n    <p>Repository interaction limit that applies to this object.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time the currently active limit expires.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimit\">RepositoryInteractionLimit!</a></code>)</p></td>\n<td><p>The current limit that is enabled on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryinteractionlimitorigin\">RepositoryInteractionLimitOrigin!</a></code>)</p></td>\n<td><p>The origin of the currently active interaction limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigration\">\n      <a href=\"#repositorymigration\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigration</h2>\n    <p>An Octoshift repository migration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#migration\">Migration</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The Octoshift migration flag to continue on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>failureReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the migration failed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>migrationSource</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#migrationsource\">MigrationSource!</a></code>)</p></td>\n<td><p>The Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#migrationstate\">MigrationState!</a></code>)</p></td>\n<td><p>The Octoshift migration state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationconnection\">\n      <a href=\"#repositorymigrationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationConnection</h2>\n    <p>The connection type for RepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorymigrationedge\">[RepositoryMigrationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorymigration\">[RepositoryMigration]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationedge\">\n      <a href=\"#repositorymigrationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationEdge</h2>\n    <p>Represents a repository migration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorymigration\">RepositoryMigration</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixReason</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was marked as fixed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert fixed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the alert number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryvulnerabilityalertstate\">RepositoryVulnerabilityAlertState!</a></code>)</p></td>\n<td><p>Identifies the state of the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckdescription\">\n      <a href=\"#requiredstatuscheckdescription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckDescription</h2>\n    <p>Represents a required status check for a protected branch, but not any specific run of that check.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The App that must provide this status in order for it to be accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of discussions that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#securityvulnerabilityorder\">SecurityVulnerabilityOrder</a></code>)</p>\n<p>Ordering options for the returned topics.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorconnection\">\n      <a href=\"#sponsorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorConnection</h2>\n    <p>The connection type for Sponsor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsoredge\">[SponsorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsor\">[Sponsor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsoredge\">\n      <a href=\"#sponsoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorEdge</h2>\n    <p>Represents a user or organization who is sponsoring someone in GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableitemconnection\">\n      <a href=\"#sponsorableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableItemConnection</h2>\n    <p>The connection type for SponsorableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorableitemedge\">[SponsorableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsorableitem\">[SponsorableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorableitemedge\">\n      <a href=\"#sponsorableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsorableitem\">SponsorableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivity\">\n      <a href=\"#sponsorsactivity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivity</h2>\n    <p>An event related to sponsorship activity.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsactivityaction\">SponsorsActivityAction!</a></code>)</p></td>\n<td><p>What action this activity indicates took place.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSponsorsTier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The tier that the sponsorship used to use, for tier change events.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization who triggered this activity and was/is sponsoring the sponsorable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The user or organization that is being sponsored, the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsTier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The associated sponsorship tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timestamp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The timestamp of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityconnection\">\n      <a href=\"#sponsorsactivityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityConnection</h2>\n    <p>The connection type for SponsorsActivity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivityedge\">[SponsorsActivityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivity\">[SponsorsActivity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsactivityedge\">\n      <a href=\"#sponsorsactivityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsActivityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivity\">SponsorsActivity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorsgoal\">\n      <a href=\"#sponsorsgoal\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsGoal</h2>\n    <p>A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of the goal from the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsgoalkind\">SponsorsGoalKind!</a></code>)</p></td>\n<td><p>What the objective of this goal is.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>percentComplete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The percentage representing how complete this goal is, between 0-100.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetValue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A brief summary of the kind and target value of this goal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorslisting\">\n      <a href=\"#sponsorslisting\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsListing</h2>\n    <p>A GitHub Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeGoal</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsgoal\">SponsorsGoal</a></code>)</p></td>\n<td><p>The current goal the maintainer is trying to reach with GitHub Sponsors, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full description of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fullDescriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The full description of the listing rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this listing is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The listing&apos;s full name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nextPayoutDate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>A future date on which this listing is eligible to receive a payout.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short description of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The short name of the listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity this listing represents who can be sponsored on GitHub Sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tiers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstierconnection\">SponsorsTierConnection</a></code>)</p></td>\n<td><p>The published tiers for this GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorstierorder\">SponsorsTierOrder</a></code>)</p>\n<p>Ordering options for Sponsors tiers returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstier\">\n      <a href=\"#sponsorstier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTier</h2>\n    <p>A GitHub Sponsors tier associated with a GitHub Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>adminInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstieradmininfo\">SponsorsTierAdminInfo</a></code>)</p></td>\n<td><p>SponsorsTier information only visible to users that can administer the associated Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closestLesserValueTier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>Get a different tier for this tier&apos;s maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier&apos;s without going over.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The description of the tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The tier description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCustomAmount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOneTime</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this tier is only for use with one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyPriceInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How much this tier costs per month in cents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyPriceInDollars</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How much this tier costs per month in USD.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorslisting\">SponsorsListing!</a></code>)</p></td>\n<td><p>The sponsors listing that this tier belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstieradmininfo\">\n      <a href=\"#sponsorstieradmininfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierAdminInfo</h2>\n    <p>SponsorsTier information only visible to users that can administer the associated Sponsors listing.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>sponsorships</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>The sponsorships associated with this tier.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstierconnection\">\n      <a href=\"#sponsorstierconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierConnection</h2>\n    <p>The connection type for SponsorsTier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstieredge\">[SponsorsTierEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">[SponsorsTier]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorstieredge\">\n      <a href=\"#sponsorstieredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorsTierEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorship\">\n      <a href=\"#sponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Sponsorship</h2>\n    <p>A sponsorship relationship between a sponsor and a maintainer.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOneTimePayment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this sponsorship represents a one-time payment versus a recurring sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsorOptedIntoEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>maintainer</code> is deprecated.</p><p><code>Sponsorship.maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead. Removal on 2020-04-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy!</a></code>)</p></td>\n<td><p>The privacy level for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>sponsor</code> is deprecated.</p><p><code>Sponsorship.sponsor</code> will be removed. Use <code>Sponsorship.sponsorEntity</code> instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorEntity</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization that is sponsoring, if you have permission to view them.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tier</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorstier\">SponsorsTier</a></code>)</p></td>\n<td><p>The associated sponsorship tier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tierSelectedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the current tier was chosen for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipconnection\">\n      <a href=\"#sponsorshipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipConnection</h2>\n    <p>The connection type for Sponsorship.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipedge\">[SponsorshipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">[Sponsorship]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRecurringMonthlyPriceInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRecurringMonthlyPriceInDollars</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipedge\">\n      <a href=\"#sponsorshipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletter\">\n      <a href=\"#sponsorshipnewsletter\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletter</h2>\n    <p>An update sent to sponsors of a user or organization on GitHub Sponsors.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contents of the newsletter, the message the sponsorable wanted to give.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublished</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the newsletter has been made available to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The user or organization this newsletter is from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The subject of the newsletter, what it&apos;s about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletterconnection\">\n      <a href=\"#sponsorshipnewsletterconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterConnection</h2>\n    <p>The connection type for SponsorshipNewsletter.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletteredge\">[SponsorshipNewsletterEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletter\">[SponsorshipNewsletter]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipnewsletteredge\">\n      <a href=\"#sponsorshipnewsletteredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipNewsletterEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletter\">SponsorshipNewsletter</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/enterprise-cloud@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sponsorableOnly</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectnextowner\">ProjectNextOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canReceiveOrganizationEmailsWhenNotificationsRestricted</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Could this user receive email notifications, if the organization had notification restrictions enabled?.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to check.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>estimatedNextSponsorsPayoutInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasSponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if this user/organization has a GitHub Sponsors listing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>interactionAbility</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryinteractionability\">RepositoryInteractionAbility</a></code>)</p></td>\n<td><p>The interaction ability settings for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFollowingViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is following the viewer. Inverse of viewer_is_following.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoredBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the given account is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>accountLogin</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The target account&apos;s login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSponsoringViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsored by this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>monthlyEstimatedSponsorsIncomeInCents</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnext\">ProjectNext</a></code>)</p></td>\n<td><p>Find a project by project (beta) number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project (beta) number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsNext</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#projectnextconnection\">ProjectNextConnection!</a></code>)</p></td>\n<td><p>A list of projects (beta) under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A project (beta) to search for under the the owner.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>sortBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#projectnextorderfield\">ProjectNextOrderField</a></code>)</p>\n<p>How to order the returned projects (beta).</p>\n<p>The default value is <code>TITLE</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsoring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of users and organizations this entity is sponsoring.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for the users and organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsors</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorconnection\">SponsorConnection!</a></code>)</p></td>\n<td><p>List of sponsors for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsororder\">SponsorOrder</a></code>)</p>\n<p>Ordering options for sponsors returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tierId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsActivities</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorsactivityconnection\">SponsorsActivityConnection!</a></code>)</p></td>\n<td><p>Events involving this sponsorable, such as new sponsorships.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorsactivityorder\">SponsorsActivityOrder</a></code>)</p>\n<p>Ordering options for activity returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>period</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#sponsorsactivityperiod\">SponsorsActivityPeriod</a></code>)</p>\n<p>Filter activities returned to only those that occurred in a given time range.</p>\n<p>The default value is <code>MONTH</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorsListing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorslisting\">SponsorsListing</a></code>)</p></td>\n<td><p>The GitHub Sponsors listing for this user or organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you&apos;re the sponsor. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipForViewerAsSponsorable</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you&apos;re receiving. Only returns a sponsorship if it is active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipNewsletters</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipnewsletterconnection\">SponsorshipNewsletterConnection!</a></code>)</p></td>\n<td><p>List of sponsorship updates sent from this sponsorable to sponsors.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshipnewsletterorder\">SponsorshipNewsletterOrder</a></code>)</p>\n<p>Ordering options for sponsorship updates returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSponsor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to sponsor this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer. Inverse of is_following_viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsSponsoring</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the viewer is sponsoring this user/organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomain\">\n      <a href=\"#verifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomain</h2>\n    <p>A domain that can be verified or approved for an organization or an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dnsHostName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The DNS host name that should be used for verification.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The unicode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundHostName</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected host name was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundVerificationToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected verification token was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isApproved</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is approved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequiredForPolicyEnforcement</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this domain is required to exist for an organization or enterprise policy to be enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner!</a></code>)</p></td>\n<td><p>The owner of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>punycodeEncodedDomain</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The punycode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tokenExpirationTime</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the current verification token will expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current verification token for the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainconnection\">\n      <a href=\"#verifiabledomainconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainConnection</h2>\n    <p>The connection type for VerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomainedge\">[VerifiableDomainEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomain\">[VerifiableDomain]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainedge\">\n      <a href=\"#verifiabledomainedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflow\">\n      <a href=\"#workflow\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Workflow</h2>\n    <p>A workflow contains meta information about an Actions workflow file.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflowrun\">\n      <a href=\"#workflowrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>WorkflowRun</h2>\n    <p>A workflow run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-cloud@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite this workflow run belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentReviews</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentreviewconnection\">DeploymentReviewConnection!</a></code>)</p></td>\n<td><p>The log of deployment reviews.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequests</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#deploymentrequestconnection\">DeploymentRequestConnection!</a></code>)</p></td>\n<td><p>The pending deployment requests of all check runs in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>runNumber</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number that uniquely identifies this workflow run in its parent workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflow</code> (<code><a href=\"/en/enterprise-cloud@latest/graphql/reference/objects#workflow\">Workflow!</a></code>)</p></td>\n<td><p>The workflow executed in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#actorlocation\">\n      ActorLocation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#actorlocation\">\n      ActorLocation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#app\">\n      App</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#app\">\n      App</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#assignedevent\">\n      AssignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#assignedevent\">\n      AssignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blame\">\n      Blame</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blame\">\n      Blame</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blamerange\">\n      BlameRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blamerange\">\n      BlameRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blob\">\n      Blob</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blob\">\n      Blob</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bot\">\n      Bot</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bot\">\n      Bot</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowance\">\n      BypassForcePushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowance\">\n      BypassForcePushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowanceconnection\">\n      BypassForcePushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowanceconnection\">\n      BypassForcePushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowanceedge\">\n      BypassForcePushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowanceedge\">\n      BypassForcePushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowance\">\n      BypassPullRequestAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowance\">\n      BypassPullRequestAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowanceconnection\">\n      BypassPullRequestAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowanceconnection\">\n      BypassPullRequestAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowanceedge\">\n      BypassPullRequestAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowanceedge\">\n      BypassPullRequestAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cvss\">\n      CVSS</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cvss\">\n      CVSS</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cwe\">\n      CWE</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cwe\">\n      CWE</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweconnection\">\n      CWEConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweconnection\">\n      CWEConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweedge\">\n      CWEEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweedge\">\n      CWEEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrun\">\n      CheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrun\">\n      CheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstep\">\n      CheckStep</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstep\">\n      CheckStep</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuite\">\n      CheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuite\">\n      CheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closedevent\">\n      ClosedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closedevent\">\n      ClosedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commit\">\n      Commit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commit\">\n      Commit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcomment\">\n      CommitComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcomment\">\n      CommitComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitconnection\">\n      CommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitconnection\">\n      CommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitedge\">\n      CommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitedge\">\n      CommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertedtodiscussionevent\">\n      ConvertedToDiscussionEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertedtodiscussionevent\">\n      ConvertedToDiscussionEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphdependency\">\n      DependencyGraphDependency</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphdependency\">\n      DependencyGraphDependency</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphdependencyconnection\">\n      DependencyGraphDependencyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphdependencyconnection\">\n      DependencyGraphDependencyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphdependencyedge\">\n      DependencyGraphDependencyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphdependencyedge\">\n      DependencyGraphDependencyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphmanifest\">\n      DependencyGraphManifest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphmanifest\">\n      DependencyGraphManifest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphmanifestconnection\">\n      DependencyGraphManifestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphmanifestconnection\">\n      DependencyGraphManifestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#dependencygraphmanifestedge\">\n      DependencyGraphManifestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#dependencygraphmanifestedge\">\n      DependencyGraphManifestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykey\">\n      DeployKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykey\">\n      DeployKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployedevent\">\n      DeployedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployedevent\">\n      DeployedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployment\">\n      Deployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployment\">\n      Deployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussion\">\n      Discussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussion\">\n      Discussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprise\">\n      Enterprise</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprise\">\n      Enterprise</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallationconnection\">\n      EnterpriseServerInstallationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallationconnection\">\n      EnterpriseServerInstallationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallationedge\">\n      EnterpriseServerInstallationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallationedge\">\n      EnterpriseServerInstallationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environment\">\n      Environment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environment\">\n      Environment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followerconnection\">\n      FollowerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followerconnection\">\n      FollowerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followingconnection\">\n      FollowingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followingconnection\">\n      FollowingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#fundinglink\">\n      FundingLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#fundinglink\">\n      FundingLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gist\">\n      Gist</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gist\">\n      Gist</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcomment\">\n      GistComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcomment\">\n      GistComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistconnection\">\n      GistConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistconnection\">\n      GistConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistedge\">\n      GistEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistedge\">\n      GistEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistfile\">\n      GistFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistfile\">\n      GistFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactor\">\n      GitActor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactor\">\n      GitActor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gpgsignature\">\n      GpgSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gpgsignature\">\n      GpgSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#hovercard\">\n      Hovercard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#hovercard\">\n      Hovercard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issue\">\n      Issue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issue\">\n      Issue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecomment\">\n      IssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecomment\">\n      IssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueconnection\">\n      IssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueconnection\">\n      IssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueedge\">\n      IssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueedge\">\n      IssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#label\">\n      Label</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#label\">\n      Label</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelconnection\">\n      LabelConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelconnection\">\n      LabelConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledge\">\n      LabelEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledge\">\n      LabelEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledevent\">\n      LabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledevent\">\n      LabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#language\">\n      Language</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#language\">\n      Language</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageconnection\">\n      LanguageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageconnection\">\n      LanguageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageedge\">\n      LanguageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageedge\">\n      LanguageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#license\">\n      License</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#license\">\n      License</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#licenserule\">\n      LicenseRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#licenserule\">\n      LicenseRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#lockedevent\">\n      LockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#lockedevent\">\n      LockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mannequin\">\n      Mannequin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mannequin\">\n      Mannequin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#marketplacecategory\">\n      MarketplaceCategory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#marketplacecategory\">\n      MarketplaceCategory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#marketplacelisting\">\n      MarketplaceListing</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#marketplacelisting\">\n      MarketplaceListing</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#marketplacelistingconnection\">\n      MarketplaceListingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#marketplacelistingconnection\">\n      MarketplaceListingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#marketplacelistingedge\">\n      MarketplaceListingEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#marketplacelistingedge\">\n      MarketplaceListingEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergedevent\">\n      MergedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergedevent\">\n      MergedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#migrationsource\">\n      MigrationSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#migrationsource\">\n      MigrationSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestone\">\n      Milestone</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestone\">\n      Milestone</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oidcprovider\">\n      OIDCProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oidcprovider\">\n      OIDCProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organization\">\n      Organization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organization\">\n      Organization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationenterpriseownerconnection\">\n      OrganizationEnterpriseOwnerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationenterpriseownerconnection\">\n      OrganizationEnterpriseOwnerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationenterpriseowneredge\">\n      OrganizationEnterpriseOwnerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationenterpriseowneredge\">\n      OrganizationEnterpriseOwnerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#package\">\n      Package</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#package\">\n      Package</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageconnection\">\n      PackageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageconnection\">\n      PackageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageedge\">\n      PackageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageedge\">\n      PackageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefile\">\n      PackageFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefile\">\n      PackageFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagetag\">\n      PackageTag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagetag\">\n      PackageTag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversion\">\n      PackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversion\">\n      PackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pageinfo\">\n      PageInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pageinfo\">\n      PageInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#permissionsource\">\n      PermissionSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#permissionsource\">\n      PermissionSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#project\">\n      Project</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#project\">\n      Project</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcard\">\n      ProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcard\">\n      ProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectconnection\">\n      ProjectConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectconnection\">\n      ProjectConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectedge\">\n      ProjectEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectedge\">\n      ProjectEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnext\">\n      ProjectNext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnext\">\n      ProjectNext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextconnection\">\n      ProjectNextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextconnection\">\n      ProjectNextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextedge\">\n      ProjectNextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextedge\">\n      ProjectNextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextfield\">\n      ProjectNextField</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextfield\">\n      ProjectNextField</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextfieldconnection\">\n      ProjectNextFieldConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextfieldconnection\">\n      ProjectNextFieldConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextfieldedge\">\n      ProjectNextFieldEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextfieldedge\">\n      ProjectNextFieldEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitem\">\n      ProjectNextItem</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitem\">\n      ProjectNextItem</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemconnection\">\n      ProjectNextItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemconnection\">\n      ProjectNextItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemedge\">\n      ProjectNextItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemedge\">\n      ProjectNextItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemfieldvalue\">\n      ProjectNextItemFieldValue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemfieldvalue\">\n      ProjectNextItemFieldValue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemfieldvalueconnection\">\n      ProjectNextItemFieldValueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemfieldvalueconnection\">\n      ProjectNextItemFieldValueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectnextitemfieldvalueedge\">\n      ProjectNextItemFieldValueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectnextitemfieldvalueedge\">\n      ProjectNextItemFieldValueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectprogress\">\n      ProjectProgress</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectprogress\">\n      ProjectProgress</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickey\">\n      PublicKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickey\">\n      PublicKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequest\">\n      PullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequest\">\n      PullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#push\">\n      Push</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#push\">\n      Push</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowance\">\n      PushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowance\">\n      PushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ratelimit\">\n      RateLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ratelimit\">\n      RateLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reaction\">\n      Reaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reaction\">\n      Reaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionedge\">\n      ReactionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionedge\">\n      ReactionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactoredge\">\n      ReactorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactoredge\">\n      ReactorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ref\">\n      Ref</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ref\">\n      Ref</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refconnection\">\n      RefConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refconnection\">\n      RefConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refedge\">\n      RefEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refedge\">\n      RefEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#release\">\n      Release</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#release\">\n      Release</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repository\">\n      Repository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repository\">\n      Repository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycodeowners\">\n      RepositoryCodeowners</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycodeowners\">\n      RepositoryCodeowners</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycodeownerserror\">\n      RepositoryCodeownersError</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycodeownerserror\">\n      RepositoryCodeownersError</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinteractionability\">\n      RepositoryInteractionAbility</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinteractionability\">\n      RepositoryInteractionAbility</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigration\">\n      RepositoryMigration</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigration\">\n      RepositoryMigration</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigrationconnection\">\n      RepositoryMigrationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigrationconnection\">\n      RepositoryMigrationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigrationedge\">\n      RepositoryMigrationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigrationedge\">\n      RepositoryMigrationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requiredstatuscheckdescription\">\n      RequiredStatusCheckDescription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requiredstatuscheckdescription\">\n      RequiredStatusCheckDescription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreply\">\n      SavedReply</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreply\">\n      SavedReply</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#smimesignature\">\n      SmimeSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#smimesignature\">\n      SmimeSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorconnection\">\n      SponsorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorconnection\">\n      SponsorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsoredge\">\n      SponsorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsoredge\">\n      SponsorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorableitemconnection\">\n      SponsorableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorableitemconnection\">\n      SponsorableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorableitemedge\">\n      SponsorableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorableitemedge\">\n      SponsorableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsactivity\">\n      SponsorsActivity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsactivity\">\n      SponsorsActivity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsactivityconnection\">\n      SponsorsActivityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsactivityconnection\">\n      SponsorsActivityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsactivityedge\">\n      SponsorsActivityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsactivityedge\">\n      SponsorsActivityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorsgoal\">\n      SponsorsGoal</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorsgoal\">\n      SponsorsGoal</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorslisting\">\n      SponsorsListing</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorslisting\">\n      SponsorsListing</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstier\">\n      SponsorsTier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstier\">\n      SponsorsTier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstieradmininfo\">\n      SponsorsTierAdminInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstieradmininfo\">\n      SponsorsTierAdminInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstierconnection\">\n      SponsorsTierConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstierconnection\">\n      SponsorsTierConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorstieredge\">\n      SponsorsTierEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorstieredge\">\n      SponsorsTierEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorship\">\n      Sponsorship</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorship\">\n      Sponsorship</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipnewsletter\">\n      SponsorshipNewsletter</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipnewsletter\">\n      SponsorshipNewsletter</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipnewsletterconnection\">\n      SponsorshipNewsletterConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipnewsletterconnection\">\n      SponsorshipNewsletterConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipnewsletteredge\">\n      SponsorshipNewsletterEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipnewsletteredge\">\n      SponsorshipNewsletterEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#status\">\n      Status</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#status\">\n      Status</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscontext\">\n      StatusContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscontext\">\n      StatusContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submodule\">\n      Submodule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submodule\">\n      Submodule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tag\">\n      Tag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tag\">\n      Tag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#team\">\n      Team</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#team\">\n      Team</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamconnection\">\n      TeamConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamconnection\">\n      TeamConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamedge\">\n      TeamEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamedge\">\n      TeamEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatch\">\n      TextMatch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatch\">\n      TextMatch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#topic\">\n      Topic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#topic\">\n      Topic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferredevent\">\n      TransferredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferredevent\">\n      TransferredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tree\">\n      Tree</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tree\">\n      Tree</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#treeentry\">\n      TreeEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#treeentry\">\n      TreeEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#user\">\n      User</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#user\">\n      User</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userconnection\">\n      UserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userconnection\">\n      UserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useredge\">\n      UserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useredge\">\n      UserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatus\">\n      UserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatus\">\n      UserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflow\">\n      Workflow</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflow\">\n      Workflow</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflowrun\">\n      WorkflowRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflowrun\">\n      WorkflowRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -7517,3388 +7517,3388 @@
     "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses of the app.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushAllowances</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#bypassforcepushallowanceconnection\">BypassForcePushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to force push for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestAllowances</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#bypasspullrequestallowanceconnection\">BypassPullRequestAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to bypass PRs for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#requiredstatuscheckdescription\">[RequiredStatusCheckDescription!]</a></code>)</p></td>\n<td><p>List of required status checks that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowance\">\n      <a href=\"#bypassforcepushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowance</h2>\n    <p>A team or user who has the ability to bypass a force push requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceconnection\">\n      <a href=\"#bypassforcepushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceConnection</h2>\n    <p>The connection type for BypassForcePushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#bypassforcepushallowanceedge\">[BypassForcePushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#bypassforcepushallowance\">[BypassForcePushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceedge\">\n      <a href=\"#bypassforcepushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#bypassforcepushallowance\">BypassForcePushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowance\">\n      <a href=\"#bypasspullrequestallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowance</h2>\n    <p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceconnection\">\n      <a href=\"#bypasspullrequestallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceConnection</h2>\n    <p>The connection type for BypassPullRequestAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#bypasspullrequestallowanceedge\">[BypassPullRequestAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#bypasspullrequestallowance\">[BypassPullRequestAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceedge\">\n      <a href=\"#bypasspullrequestallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#bypasspullrequestallowance\">BypassPullRequestAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The corresponding deployment for this job, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>Information about a pending deployment, if any, in this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>steps</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkstepconnection\">CheckStepConnection</a></code>)</p></td>\n<td><p>The check run&apos;s steps.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Step number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstep\">\n      <a href=\"#checkstep\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStep</h2>\n    <p>A single check step.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check step on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The step&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The index of the step in the list of steps of the parent check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondsToCompletion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of seconds to completion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepconnection\">\n      <a href=\"#checkstepconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepConnection</h2>\n    <p>The connection type for CheckStep.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkstepedge\">[CheckStepEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkstep\">[CheckStep]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepedge\">\n      <a href=\"#checkstepedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkstep\">CheckStep</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who triggered the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRun</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#workflowrun\">WorkflowRun</a></code>)</p></td>\n<td><p>The workflow run associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertedtodiscussionevent\">\n      <a href=\"#convertedtodiscussionevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedToDiscussionEvent</h2>\n    <p>Represents a<code>converted_to_discussion</code>event on a given issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that the issue was converted into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionrule\">\n      <a href=\"#deploymentprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRule</h2>\n    <p>A protection rule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeout</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The timeout in minutes for this protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#deploymentprotectionruletype\">DeploymentProtectionRuleType!</a></code>)</p></td>\n<td><p>The type of protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleconnection\">\n      <a href=\"#deploymentprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleConnection</h2>\n    <p>The connection type for DeploymentProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentprotectionruleedge\">[DeploymentProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentprotectionrule\">[DeploymentProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleedge\">\n      <a href=\"#deploymentprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentprotectionrule\">DeploymentProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequest\">\n      <a href=\"#deploymentrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequest</h2>\n    <p>A request to deploy a workflow run to an environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>currentUserCanApprove</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can approve the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#environment\">Environment!</a></code>)</p></td>\n<td><p>The target environment of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimerStartedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestconnection\">\n      <a href=\"#deploymentrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestConnection</h2>\n    <p>The connection type for DeploymentRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentrequestedge\">[DeploymentRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentrequest\">[DeploymentRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestedge\">\n      <a href=\"#deploymentrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreview\">\n      <a href=\"#deploymentreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReview</h2>\n    <p>A deployment review.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>The environments approved or rejected.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#deploymentreviewstate\">DeploymentReviewState!</a></code>)</p></td>\n<td><p>The decision of the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that reviewed the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewconnection\">\n      <a href=\"#deploymentreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewConnection</h2>\n    <p>The connection type for DeploymentReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentreviewedge\">[DeploymentReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentreview\">[DeploymentReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewedge\">\n      <a href=\"#deploymentreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentreview\">DeploymentReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewerconnection\">\n      <a href=\"#deploymentreviewerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerConnection</h2>\n    <p>The connection type for DeploymentReviewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentrevieweredge\">[DeploymentReviewerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#deploymentreviewer\">[DeploymentReviewer]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrevieweredge\">\n      <a href=\"#deploymentrevieweredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#deploymentreviewer\">DeploymentReviewer</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussion\">\n      <a href=\"#discussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Discussion</h2>\n    <p>A discussion in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The comment chosen as this discussion&apos;s answer, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when a user chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The main text of the discussion post.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>category</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncategory\">DiscussionCategory!</a></code>)</p></td>\n<td><p>The category for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The replies to the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number identifying this discussion within the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategory\">\n      <a href=\"#discussioncategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategory</h2>\n    <p>A category for discussions in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An emoji representing this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>This category&apos;s emoji rendered as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswerable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryconnection\">\n      <a href=\"#discussioncategoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryConnection</h2>\n    <p>The connection type for DiscussionCategory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncategoryedge\">[DiscussionCategoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncategory\">[DiscussionCategory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryedge\">\n      <a href=\"#discussioncategoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncategory\">DiscussionCategory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncomment\">\n      <a href=\"#discussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionComment</h2>\n    <p>A comment on a discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when this replied-to comment was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion this comment was created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Has this comment been chosen as the answer of its discussion?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replies</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The threaded replies to this comment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment this comment is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMarkAsAnswer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user mark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnmarkAsAnswer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user unmark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentconnection\">\n      <a href=\"#discussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentConnection</h2>\n    <p>The connection type for DiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncommentedge\">[DiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncomment\">[DiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentedge\">\n      <a href=\"#discussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionconnection\">\n      <a href=\"#discussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionConnection</h2>\n    <p>The connection type for Discussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussionedge\">[DiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">[Discussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionedge\">\n      <a href=\"#discussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>viewerOrganizationRole</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The viewer&apos;s role in an organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided base repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection!</a></code>)</p></td>\n<td><p>A list of domains owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the base repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environment\">\n      <a href=\"#environment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Environment</h2>\n    <p>An environment.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>protectionRules</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentprotectionruleconnection\">DeploymentProtectionRuleConnection!</a></code>)</p></td>\n<td><p>The protection rules defined for this environment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentconnection\">\n      <a href=\"#environmentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentConnection</h2>\n    <p>The connection type for Environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#environmentedge\">[EnvironmentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#environment\">[Environment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentedge\">\n      <a href=\"#environmentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>claimant</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that has claimed the data attributed to this mannequin.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection</a></code>)</p></td>\n<td><p>A list of domains owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseOwners</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationenterpriseownerconnection\">OrganizationEnterpriseOwnerConnection!</a></code>)</p></td>\n<td><p>A list of owners of the organization&apos;s enterprise account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#orgenterpriseownerorder\">OrgEnterpriseOwnerOrder</a></code>)</p>\n<p>Ordering options for enterprise owners returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationRole</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The organization role to filter by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the organization has verified its profile email and website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanForkPrivateRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Members can fork private repositories in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this organization is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>A list of organizations managed by an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseownerconnection\">\n      <a href=\"#organizationenterpriseownerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationenterpriseowneredge\">[OrganizationEnterpriseOwnerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseowneredge\">\n      <a href=\"#organizationenterpriseowneredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerEdge</h2>\n    <p>An enterprise owner in the context of an organization that is part of the enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role of the owner with respect to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"package\">\n      <a href=\"#package\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Package</h2>\n    <p>Information for an uploaded package.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>latestVersion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find the latest version for the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#packagetype\">PackageType!</a></code>)</p></td>\n<td><p>Identifies the type of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this package belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packagestatistics\">PackageStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find package version by version string.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>version</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The package version.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>versions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageversionconnection\">PackageVersionConnection!</a></code>)</p></td>\n<td><p>list of versions for this package.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#packageversionorder\">PackageVersionOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageconnection\">\n      <a href=\"#packageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageConnection</h2>\n    <p>The connection type for Package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageedge\">[PackageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#package\">[Package]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageedge\">\n      <a href=\"#packageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefile\">\n      <a href=\"#packagefile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFile</h2>\n    <p>A file in a package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>md5</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>MD5 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Name of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The package version this file belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha1</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA1 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha256</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA256 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Size of the file in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to download the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileconnection\">\n      <a href=\"#packagefileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileConnection</h2>\n    <p>The connection type for PackageFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packagefileedge\">[PackageFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packagefile\">[PackageFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileedge\">\n      <a href=\"#packagefileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packagefile\">PackageFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagestatistics\">\n      <a href=\"#packagestatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageStatistics</h2>\n    <p>Represents a object that contains package activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagetag\">\n      <a href=\"#packagetag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageTag</h2>\n    <p>A version tag contains the mapping between a tag name and a version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the tag name of the version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Version that the tag is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversion\">\n      <a href=\"#packageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersion</h2>\n    <p>Information about a specific package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packagefileconnection\">PackageFileConnection!</a></code>)</p></td>\n<td><p>List of files associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#packagefileorder\">PackageFileOrder</a></code>)</p>\n<p>Ordering of the returned package files.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The package associated with this version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The platform this version was built for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preRelease</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this version is a pre-release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readme</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The README of this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The release associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageversionstatistics\">PackageVersionStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The package version summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The version string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionconnection\">\n      <a href=\"#packageversionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionConnection</h2>\n    <p>The connection type for PackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageversionedge\">[PackageVersionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageversion\">[PackageVersion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionedge\">\n      <a href=\"#packageversionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionstatistics\">\n      <a href=\"#packageversionstatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionStatistics</h2>\n    <p>Represents a object that contains package version activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussion\">\n      <a href=\"#pinneddiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussion</h2>\n    <p>A Pinned Discussion is a discussion pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion!</a></code>)</p></td>\n<td><p>The discussion that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gradientStopColors</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Color stops of the chosen gradient.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pinneddiscussionpattern\">PinnedDiscussionPattern!</a></code>)</p></td>\n<td><p>Background texture pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preconfiguredGradient</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pinneddiscussiongradient\">PinnedDiscussionGradient</a></code>)</p></td>\n<td><p>Preconfigured background gradient option.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionconnection\">\n      <a href=\"#pinneddiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionConnection</h2>\n    <p>The connection type for PinnedDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinneddiscussionedge\">[PinnedDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinneddiscussion\">[PinnedDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionedge\">\n      <a href=\"#pinneddiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinneddiscussion\">PinnedDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>Identifies the pull request title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReview</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The latest review given from the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReviewRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The person who has requested the viewer for review on this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttemplate\">\n      <a href=\"#pullrequesttemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTemplate</h2>\n    <p>A repository pull request template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The filename of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the template belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactors</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactorconnection\">ReactorConnection!</a></code>)</p></td>\n<td><p>Reactors to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>users</code> is deprecated.</p><p>Reactors can now be mannequins, bots, and organizations. Use the <code>reactors</code> field instead. Removal on 2021-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactorconnection\">\n      <a href=\"#reactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorConnection</h2>\n    <p>The connection type for Reactor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactoredge\">[ReactorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#reactor\">[Reactor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactoredge\">\n      <a href=\"#reactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorEdge</h2>\n    <p>Represents an author of a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#reactor\">Reactor!</a></code>)</p></td>\n<td><p>The author of the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerAllowedToDismissReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the viewer allowed to dismiss reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection</a></code>)</p></td>\n<td><p>A list of users mentioned in the release description.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not Auto-merge can be enabled on pull requests in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>Returns a single discussion from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the discussion to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCategories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncategoryconnection\">DiscussionCategoryConnection!</a></code>)</p></td>\n<td><p>A list of discussion categories that are available in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterByAssignable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by categories that are assignable by the viewer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>categoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Only include discussions that belong to the category with this ID.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>Returns a single active environment from the current repository by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the environment to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>A list of environments that are in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingAllowed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository allows forks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnonymousAccessEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has anonymous Git read access feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedDiscussions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinneddiscussionconnection\">PinnedDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been pinned in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestTemplates</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequesttemplate\">[PullRequestTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of pull request templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckdescription\">\n      <a href=\"#requiredstatuscheckdescription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckDescription</h2>\n    <p>Represents a required status check for a protected branch, but not any specific run of that check.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The App that must provide this status in order for it to be accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of discussions that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/enterprise-server@3.4/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canReceiveOrganizationEmailsWhenNotificationsRestricted</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Could this user receive email notifications, if the organization had notification restrictions enabled?.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to check.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFollowingViewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is following the viewer. Inverse of viewer_is_following.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suspendedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the user was suspended.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer. Inverse of is_following_viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomain\">\n      <a href=\"#verifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomain</h2>\n    <p>A domain that can be verified or approved for an organization or an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dnsHostName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The DNS host name that should be used for verification.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The unicode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundHostName</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected host name was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundVerificationToken</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected verification token was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isApproved</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is approved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequiredForPolicyEnforcement</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this domain is required to exist for an organization or enterprise policy to be enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner!</a></code>)</p></td>\n<td><p>The owner of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>punycodeEncodedDomain</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The punycode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tokenExpirationTime</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the current verification token will expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current verification token for the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainconnection\">\n      <a href=\"#verifiabledomainconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainConnection</h2>\n    <p>The connection type for VerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#verifiabledomainedge\">[VerifiableDomainEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#verifiabledomain\">[VerifiableDomain]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainedge\">\n      <a href=\"#verifiabledomainedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflow\">\n      <a href=\"#workflow\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Workflow</h2>\n    <p>A workflow contains meta information about an Actions workflow file.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflowrun\">\n      <a href=\"#workflowrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>WorkflowRun</h2>\n    <p>A workflow run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.4/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite this workflow run belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentReviews</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentreviewconnection\">DeploymentReviewConnection!</a></code>)</p></td>\n<td><p>The log of deployment reviews.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequests</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#deploymentrequestconnection\">DeploymentRequestConnection!</a></code>)</p></td>\n<td><p>The pending deployment requests of all check runs in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>runNumber</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number that uniquely identifies this workflow run in its parent workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflow</code> (<code><a href=\"/en/enterprise-server@3.4/graphql/reference/objects#workflow\">Workflow!</a></code>)</p></td>\n<td><p>The workflow executed in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#actorlocation\">\n      ActorLocation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#actorlocation\">\n      ActorLocation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#app\">\n      App</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#app\">\n      App</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#assignedevent\">\n      AssignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#assignedevent\">\n      AssignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blame\">\n      Blame</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blame\">\n      Blame</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blamerange\">\n      BlameRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blamerange\">\n      BlameRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blob\">\n      Blob</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blob\">\n      Blob</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bot\">\n      Bot</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bot\">\n      Bot</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowance\">\n      BypassForcePushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowance\">\n      BypassForcePushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowanceconnection\">\n      BypassForcePushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowanceconnection\">\n      BypassForcePushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowanceedge\">\n      BypassForcePushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowanceedge\">\n      BypassForcePushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowance\">\n      BypassPullRequestAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowance\">\n      BypassPullRequestAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowanceconnection\">\n      BypassPullRequestAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowanceconnection\">\n      BypassPullRequestAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowanceedge\">\n      BypassPullRequestAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowanceedge\">\n      BypassPullRequestAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cvss\">\n      CVSS</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cvss\">\n      CVSS</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cwe\">\n      CWE</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cwe\">\n      CWE</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweconnection\">\n      CWEConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweconnection\">\n      CWEConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweedge\">\n      CWEEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweedge\">\n      CWEEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrun\">\n      CheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrun\">\n      CheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstep\">\n      CheckStep</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstep\">\n      CheckStep</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuite\">\n      CheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuite\">\n      CheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closedevent\">\n      ClosedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closedevent\">\n      ClosedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commit\">\n      Commit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commit\">\n      Commit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcomment\">\n      CommitComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcomment\">\n      CommitComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitconnection\">\n      CommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitconnection\">\n      CommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitedge\">\n      CommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitedge\">\n      CommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertedtodiscussionevent\">\n      ConvertedToDiscussionEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertedtodiscussionevent\">\n      ConvertedToDiscussionEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykey\">\n      DeployKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykey\">\n      DeployKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployedevent\">\n      DeployedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployedevent\">\n      DeployedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployment\">\n      Deployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployment\">\n      Deployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussion\">\n      Discussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussion\">\n      Discussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprise\">\n      Enterprise</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprise\">\n      Enterprise</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environment\">\n      Environment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environment\">\n      Environment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followerconnection\">\n      FollowerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followerconnection\">\n      FollowerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followingconnection\">\n      FollowingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followingconnection\">\n      FollowingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gist\">\n      Gist</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gist\">\n      Gist</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcomment\">\n      GistComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcomment\">\n      GistComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistconnection\">\n      GistConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistconnection\">\n      GistConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistedge\">\n      GistEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistedge\">\n      GistEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistfile\">\n      GistFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistfile\">\n      GistFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactor\">\n      GitActor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactor\">\n      GitActor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gpgsignature\">\n      GpgSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gpgsignature\">\n      GpgSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#hovercard\">\n      Hovercard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#hovercard\">\n      Hovercard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issue\">\n      Issue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issue\">\n      Issue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecomment\">\n      IssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecomment\">\n      IssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueconnection\">\n      IssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueconnection\">\n      IssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueedge\">\n      IssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueedge\">\n      IssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#label\">\n      Label</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#label\">\n      Label</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelconnection\">\n      LabelConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelconnection\">\n      LabelConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledge\">\n      LabelEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledge\">\n      LabelEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledevent\">\n      LabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledevent\">\n      LabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#language\">\n      Language</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#language\">\n      Language</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageconnection\">\n      LanguageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageconnection\">\n      LanguageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageedge\">\n      LanguageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageedge\">\n      LanguageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#license\">\n      License</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#license\">\n      License</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#licenserule\">\n      LicenseRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#licenserule\">\n      LicenseRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#lockedevent\">\n      LockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#lockedevent\">\n      LockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mannequin\">\n      Mannequin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mannequin\">\n      Mannequin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergedevent\">\n      MergedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergedevent\">\n      MergedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestone\">\n      Milestone</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestone\">\n      Milestone</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organization\">\n      Organization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organization\">\n      Organization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationenterpriseownerconnection\">\n      OrganizationEnterpriseOwnerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationenterpriseownerconnection\">\n      OrganizationEnterpriseOwnerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationenterpriseowneredge\">\n      OrganizationEnterpriseOwnerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationenterpriseowneredge\">\n      OrganizationEnterpriseOwnerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#package\">\n      Package</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#package\">\n      Package</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageconnection\">\n      PackageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageconnection\">\n      PackageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageedge\">\n      PackageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageedge\">\n      PackageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefile\">\n      PackageFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefile\">\n      PackageFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagetag\">\n      PackageTag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagetag\">\n      PackageTag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversion\">\n      PackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversion\">\n      PackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pageinfo\">\n      PageInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pageinfo\">\n      PageInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#permissionsource\">\n      PermissionSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#permissionsource\">\n      PermissionSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#project\">\n      Project</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#project\">\n      Project</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcard\">\n      ProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcard\">\n      ProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectconnection\">\n      ProjectConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectconnection\">\n      ProjectConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectedge\">\n      ProjectEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectedge\">\n      ProjectEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectprogress\">\n      ProjectProgress</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectprogress\">\n      ProjectProgress</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickey\">\n      PublicKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickey\">\n      PublicKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequest\">\n      PullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequest\">\n      PullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#push\">\n      Push</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#push\">\n      Push</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowance\">\n      PushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowance\">\n      PushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ratelimit\">\n      RateLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ratelimit\">\n      RateLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reaction\">\n      Reaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reaction\">\n      Reaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionedge\">\n      ReactionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionedge\">\n      ReactionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactoredge\">\n      ReactorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactoredge\">\n      ReactorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ref\">\n      Ref</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ref\">\n      Ref</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refconnection\">\n      RefConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refconnection\">\n      RefConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refedge\">\n      RefEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refedge\">\n      RefEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#release\">\n      Release</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#release\">\n      Release</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repository\">\n      Repository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repository\">\n      Repository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requiredstatuscheckdescription\">\n      RequiredStatusCheckDescription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requiredstatuscheckdescription\">\n      RequiredStatusCheckDescription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreply\">\n      SavedReply</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreply\">\n      SavedReply</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#smimesignature\">\n      SmimeSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#smimesignature\">\n      SmimeSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#status\">\n      Status</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#status\">\n      Status</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscontext\">\n      StatusContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscontext\">\n      StatusContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submodule\">\n      Submodule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submodule\">\n      Submodule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tag\">\n      Tag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tag\">\n      Tag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#team\">\n      Team</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#team\">\n      Team</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamconnection\">\n      TeamConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamconnection\">\n      TeamConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamedge\">\n      TeamEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamedge\">\n      TeamEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatch\">\n      TextMatch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatch\">\n      TextMatch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#topic\">\n      Topic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#topic\">\n      Topic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferredevent\">\n      TransferredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferredevent\">\n      TransferredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tree\">\n      Tree</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tree\">\n      Tree</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#treeentry\">\n      TreeEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#treeentry\">\n      TreeEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#user\">\n      User</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#user\">\n      User</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userconnection\">\n      UserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userconnection\">\n      UserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useredge\">\n      UserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useredge\">\n      UserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatus\">\n      UserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatus\">\n      UserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflow\">\n      Workflow</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflow\">\n      Workflow</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflowrun\">\n      WorkflowRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflowrun\">\n      WorkflowRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -10910,3332 +10910,3332 @@
     "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses of the app.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The corresponding deployment for this job, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>Information about a pending deployment, if any, in this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>steps</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkstepconnection\">CheckStepConnection</a></code>)</p></td>\n<td><p>The check run&apos;s steps.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Step number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstep\">\n      <a href=\"#checkstep\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStep</h2>\n    <p>A single check step.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check step on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The step&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The index of the step in the list of steps of the parent check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondsToCompletion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of seconds to completion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepconnection\">\n      <a href=\"#checkstepconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepConnection</h2>\n    <p>The connection type for CheckStep.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkstepedge\">[CheckStepEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkstep\">[CheckStep]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepedge\">\n      <a href=\"#checkstepedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkstep\">CheckStep</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who triggered the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRun</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#workflowrun\">WorkflowRun</a></code>)</p></td>\n<td><p>The workflow run associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contentattachment\">\n      <a href=\"#contentattachment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContentAttachment</h2>\n    <p>A content attachment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body text of the content attachment. This parameter supports markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentReference</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#contentreference\">ContentReference!</a></code>)</p></td>\n<td><p>The content reference that the content attachment is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the content attachment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contentreference\">\n      <a href=\"#contentreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContentReference</h2>\n    <p>A content reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reference</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The reference of the content reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionrule\">\n      <a href=\"#deploymentprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRule</h2>\n    <p>A protection rule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeout</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The timeout in minutes for this protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#deploymentprotectionruletype\">DeploymentProtectionRuleType!</a></code>)</p></td>\n<td><p>The type of protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleconnection\">\n      <a href=\"#deploymentprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleConnection</h2>\n    <p>The connection type for DeploymentProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentprotectionruleedge\">[DeploymentProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentprotectionrule\">[DeploymentProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleedge\">\n      <a href=\"#deploymentprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentprotectionrule\">DeploymentProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequest\">\n      <a href=\"#deploymentrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequest</h2>\n    <p>A request to deploy a workflow run to an environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>currentUserCanApprove</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can approve the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#environment\">Environment!</a></code>)</p></td>\n<td><p>The target environment of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimerStartedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestconnection\">\n      <a href=\"#deploymentrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestConnection</h2>\n    <p>The connection type for DeploymentRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentrequestedge\">[DeploymentRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentrequest\">[DeploymentRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestedge\">\n      <a href=\"#deploymentrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreview\">\n      <a href=\"#deploymentreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReview</h2>\n    <p>A deployment review.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>The environments approved or rejected.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#deploymentreviewstate\">DeploymentReviewState!</a></code>)</p></td>\n<td><p>The decision of the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that reviewed the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewconnection\">\n      <a href=\"#deploymentreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewConnection</h2>\n    <p>The connection type for DeploymentReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentreviewedge\">[DeploymentReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentreview\">[DeploymentReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewedge\">\n      <a href=\"#deploymentreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentreview\">DeploymentReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewerconnection\">\n      <a href=\"#deploymentreviewerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerConnection</h2>\n    <p>The connection type for DeploymentReviewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentrevieweredge\">[DeploymentReviewerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#deploymentreviewer\">[DeploymentReviewer]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrevieweredge\">\n      <a href=\"#deploymentrevieweredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#deploymentreviewer\">DeploymentReviewer</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussion\">\n      <a href=\"#discussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Discussion</h2>\n    <p>A discussion in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The comment chosen as this discussion&apos;s answer, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when a user chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The main text of the discussion post.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>category</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncategory\">DiscussionCategory!</a></code>)</p></td>\n<td><p>The category for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The replies to the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number identifying this discussion within the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategory\">\n      <a href=\"#discussioncategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategory</h2>\n    <p>A category for discussions in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An emoji representing this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>This category&apos;s emoji rendered as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswerable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryconnection\">\n      <a href=\"#discussioncategoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryConnection</h2>\n    <p>The connection type for DiscussionCategory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncategoryedge\">[DiscussionCategoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncategory\">[DiscussionCategory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryedge\">\n      <a href=\"#discussioncategoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncategory\">DiscussionCategory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncomment\">\n      <a href=\"#discussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionComment</h2>\n    <p>A comment on a discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when this replied-to comment was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion this comment was created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Has this comment been chosen as the answer of its discussion?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replies</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The threaded replies to this comment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment this comment is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMarkAsAnswer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user mark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnmarkAsAnswer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user unmark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentconnection\">\n      <a href=\"#discussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentConnection</h2>\n    <p>The connection type for DiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncommentedge\">[DiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncomment\">[DiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentedge\">\n      <a href=\"#discussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionconnection\">\n      <a href=\"#discussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionConnection</h2>\n    <p>The connection type for Discussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussionedge\">[DiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">[Discussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionedge\">\n      <a href=\"#discussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided base repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection!</a></code>)</p></td>\n<td><p>A list of domains owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the base repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environment\">\n      <a href=\"#environment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Environment</h2>\n    <p>An environment.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>protectionRules</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentprotectionruleconnection\">DeploymentProtectionRuleConnection!</a></code>)</p></td>\n<td><p>The protection rules defined for this environment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentconnection\">\n      <a href=\"#environmentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentConnection</h2>\n    <p>The connection type for Environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#environmentedge\">[EnvironmentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#environment\">[Environment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentedge\">\n      <a href=\"#environmentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>claimant</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that has claimed the data attributed to this mannequin.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection</a></code>)</p></td>\n<td><p>A list of domains owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the organization has verified its profile email and website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this organization is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"package\">\n      <a href=\"#package\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Package</h2>\n    <p>Information for an uploaded package.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>latestVersion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find the latest version for the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#packagetype\">PackageType!</a></code>)</p></td>\n<td><p>Identifies the type of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this package belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packagestatistics\">PackageStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find package version by version string.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>version</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The package version.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>versions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageversionconnection\">PackageVersionConnection!</a></code>)</p></td>\n<td><p>list of versions for this package.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#packageversionorder\">PackageVersionOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageconnection\">\n      <a href=\"#packageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageConnection</h2>\n    <p>The connection type for Package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageedge\">[PackageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#package\">[Package]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageedge\">\n      <a href=\"#packageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefile\">\n      <a href=\"#packagefile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFile</h2>\n    <p>A file in a package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>md5</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>MD5 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Name of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The package version this file belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha1</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA1 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha256</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA256 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Size of the file in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to download the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileconnection\">\n      <a href=\"#packagefileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileConnection</h2>\n    <p>The connection type for PackageFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packagefileedge\">[PackageFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packagefile\">[PackageFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileedge\">\n      <a href=\"#packagefileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packagefile\">PackageFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagestatistics\">\n      <a href=\"#packagestatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageStatistics</h2>\n    <p>Represents a object that contains package activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagetag\">\n      <a href=\"#packagetag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageTag</h2>\n    <p>A version tag contains the mapping between a tag name and a version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the tag name of the version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Version that the tag is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversion\">\n      <a href=\"#packageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersion</h2>\n    <p>Information about a specific package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packagefileconnection\">PackageFileConnection!</a></code>)</p></td>\n<td><p>List of files associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#packagefileorder\">PackageFileOrder</a></code>)</p>\n<p>Ordering of the returned package files.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The package associated with this version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The platform this version was built for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preRelease</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this version is a pre-release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readme</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The README of this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The release associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageversionstatistics\">PackageVersionStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The package version summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The version string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionconnection\">\n      <a href=\"#packageversionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionConnection</h2>\n    <p>The connection type for PackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageversionedge\">[PackageVersionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageversion\">[PackageVersion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionedge\">\n      <a href=\"#packageversionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionstatistics\">\n      <a href=\"#packageversionstatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionStatistics</h2>\n    <p>Represents a object that contains package version activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussion\">\n      <a href=\"#pinneddiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussion</h2>\n    <p>A Pinned Discussion is a discussion pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">Discussion!</a></code>)</p></td>\n<td><p>The discussion that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gradientStopColors</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Color stops of the chosen gradient.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pinneddiscussionpattern\">PinnedDiscussionPattern!</a></code>)</p></td>\n<td><p>Background texture pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preconfiguredGradient</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pinneddiscussiongradient\">PinnedDiscussionGradient</a></code>)</p></td>\n<td><p>Preconfigured background gradient option.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionconnection\">\n      <a href=\"#pinneddiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionConnection</h2>\n    <p>The connection type for PinnedDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinneddiscussionedge\">[PinnedDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinneddiscussion\">[PinnedDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionedge\">\n      <a href=\"#pinneddiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinneddiscussion\">PinnedDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>Identifies the pull request title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReview</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The latest review given from the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReviewRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The person who has requested the viewer for review on this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttemplate\">\n      <a href=\"#pullrequesttemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTemplate</h2>\n    <p>A repository pull request template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The filename of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the template belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactors</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactorconnection\">ReactorConnection!</a></code>)</p></td>\n<td><p>Reactors to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>users</code> is deprecated.</p><p>Reactors can now be mannequins, bots, and organizations. Use the <code>reactors</code> field instead. Removal on 2021-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactorconnection\">\n      <a href=\"#reactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorConnection</h2>\n    <p>The connection type for Reactor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactoredge\">[ReactorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#reactor\">[Reactor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactoredge\">\n      <a href=\"#reactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorEdge</h2>\n    <p>Represents an author of a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#reactor\">Reactor!</a></code>)</p></td>\n<td><p>The author of the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerAllowedToDismissReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the viewer allowed to dismiss reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection</a></code>)</p></td>\n<td><p>A list of users mentioned in the release description.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not Auto-merge can be enabled on pull requests in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>Returns a single discussion from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the discussion to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCategories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncategoryconnection\">DiscussionCategoryConnection!</a></code>)</p></td>\n<td><p>A list of discussion categories that are available in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>categoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Only include discussions that belong to the category with this ID.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>Returns a single active environment from the current repository by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the environment to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>A list of environments that are in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingAllowed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository allows forks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnonymousAccessEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has anonymous Git read access feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedDiscussions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinneddiscussionconnection\">PinnedDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been pinned in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestTemplates</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequesttemplate\">[PullRequestTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of pull request templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of discussions that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/enterprise-server@3.3/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canReceiveOrganizationEmailsWhenNotificationsRestricted</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Could this user receive email notifications, if the organization had notification restrictions enabled?.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to check.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFollowingViewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is following the viewer. Inverse of viewer_is_following.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suspendedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the user was suspended.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer. Inverse of is_following_viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomain\">\n      <a href=\"#verifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomain</h2>\n    <p>A domain that can be verified or approved for an organization or an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dnsHostName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The DNS host name that should be used for verification.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The unicode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundHostName</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected host name was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundVerificationToken</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected verification token was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isApproved</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is approved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequiredForPolicyEnforcement</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this domain is required to exist for an organization or enterprise policy to be enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner!</a></code>)</p></td>\n<td><p>The owner of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>punycodeEncodedDomain</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The punycode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tokenExpirationTime</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the current verification token will expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current verification token for the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainconnection\">\n      <a href=\"#verifiabledomainconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainConnection</h2>\n    <p>The connection type for VerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#verifiabledomainedge\">[VerifiableDomainEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#verifiabledomain\">[VerifiableDomain]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainedge\">\n      <a href=\"#verifiabledomainedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflow\">\n      <a href=\"#workflow\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Workflow</h2>\n    <p>A workflow contains meta information about an Actions workflow file.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflowrun\">\n      <a href=\"#workflowrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>WorkflowRun</h2>\n    <p>A workflow run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.3/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite this workflow run belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentReviews</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentreviewconnection\">DeploymentReviewConnection!</a></code>)</p></td>\n<td><p>The log of deployment reviews.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequests</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#deploymentrequestconnection\">DeploymentRequestConnection!</a></code>)</p></td>\n<td><p>The pending deployment requests of all check runs in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>runNumber</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number that uniquely identifies this workflow run in its parent workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflow</code> (<code><a href=\"/en/enterprise-server@3.3/graphql/reference/objects#workflow\">Workflow!</a></code>)</p></td>\n<td><p>The workflow executed in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#actorlocation\">\n      ActorLocation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#actorlocation\">\n      ActorLocation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#app\">\n      App</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#app\">\n      App</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#assignedevent\">\n      AssignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#assignedevent\">\n      AssignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blame\">\n      Blame</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blame\">\n      Blame</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blamerange\">\n      BlameRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blamerange\">\n      BlameRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blob\">\n      Blob</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blob\">\n      Blob</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bot\">\n      Bot</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bot\">\n      Bot</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cvss\">\n      CVSS</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cvss\">\n      CVSS</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cwe\">\n      CWE</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cwe\">\n      CWE</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweconnection\">\n      CWEConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweconnection\">\n      CWEConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweedge\">\n      CWEEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweedge\">\n      CWEEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrun\">\n      CheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrun\">\n      CheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstep\">\n      CheckStep</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstep\">\n      CheckStep</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuite\">\n      CheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuite\">\n      CheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closedevent\">\n      ClosedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closedevent\">\n      ClosedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commit\">\n      Commit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commit\">\n      Commit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcomment\">\n      CommitComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcomment\">\n      CommitComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitconnection\">\n      CommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitconnection\">\n      CommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitedge\">\n      CommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitedge\">\n      CommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contentattachment\">\n      ContentAttachment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contentattachment\">\n      ContentAttachment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contentreference\">\n      ContentReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contentreference\">\n      ContentReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykey\">\n      DeployKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykey\">\n      DeployKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployedevent\">\n      DeployedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployedevent\">\n      DeployedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployment\">\n      Deployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployment\">\n      Deployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussion\">\n      Discussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussion\">\n      Discussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprise\">\n      Enterprise</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprise\">\n      Enterprise</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environment\">\n      Environment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environment\">\n      Environment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followerconnection\">\n      FollowerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followerconnection\">\n      FollowerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followingconnection\">\n      FollowingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followingconnection\">\n      FollowingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gist\">\n      Gist</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gist\">\n      Gist</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcomment\">\n      GistComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcomment\">\n      GistComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistconnection\">\n      GistConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistconnection\">\n      GistConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistedge\">\n      GistEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistedge\">\n      GistEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistfile\">\n      GistFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistfile\">\n      GistFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactor\">\n      GitActor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactor\">\n      GitActor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gpgsignature\">\n      GpgSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gpgsignature\">\n      GpgSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#hovercard\">\n      Hovercard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#hovercard\">\n      Hovercard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issue\">\n      Issue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issue\">\n      Issue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecomment\">\n      IssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecomment\">\n      IssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueconnection\">\n      IssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueconnection\">\n      IssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueedge\">\n      IssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueedge\">\n      IssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#label\">\n      Label</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#label\">\n      Label</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelconnection\">\n      LabelConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelconnection\">\n      LabelConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledge\">\n      LabelEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledge\">\n      LabelEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledevent\">\n      LabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledevent\">\n      LabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#language\">\n      Language</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#language\">\n      Language</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageconnection\">\n      LanguageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageconnection\">\n      LanguageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageedge\">\n      LanguageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageedge\">\n      LanguageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#license\">\n      License</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#license\">\n      License</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#licenserule\">\n      LicenseRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#licenserule\">\n      LicenseRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#lockedevent\">\n      LockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#lockedevent\">\n      LockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mannequin\">\n      Mannequin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mannequin\">\n      Mannequin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergedevent\">\n      MergedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergedevent\">\n      MergedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestone\">\n      Milestone</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestone\">\n      Milestone</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organization\">\n      Organization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organization\">\n      Organization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#package\">\n      Package</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#package\">\n      Package</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageconnection\">\n      PackageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageconnection\">\n      PackageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageedge\">\n      PackageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageedge\">\n      PackageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefile\">\n      PackageFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefile\">\n      PackageFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagetag\">\n      PackageTag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagetag\">\n      PackageTag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversion\">\n      PackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversion\">\n      PackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pageinfo\">\n      PageInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pageinfo\">\n      PageInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#permissionsource\">\n      PermissionSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#permissionsource\">\n      PermissionSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#project\">\n      Project</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#project\">\n      Project</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcard\">\n      ProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcard\">\n      ProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectconnection\">\n      ProjectConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectconnection\">\n      ProjectConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectedge\">\n      ProjectEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectedge\">\n      ProjectEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectprogress\">\n      ProjectProgress</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectprogress\">\n      ProjectProgress</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickey\">\n      PublicKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickey\">\n      PublicKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequest\">\n      PullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequest\">\n      PullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#push\">\n      Push</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#push\">\n      Push</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowance\">\n      PushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowance\">\n      PushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ratelimit\">\n      RateLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ratelimit\">\n      RateLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reaction\">\n      Reaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reaction\">\n      Reaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionedge\">\n      ReactionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionedge\">\n      ReactionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactoredge\">\n      ReactorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactoredge\">\n      ReactorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ref\">\n      Ref</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ref\">\n      Ref</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refconnection\">\n      RefConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refconnection\">\n      RefConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refedge\">\n      RefEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refedge\">\n      RefEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#release\">\n      Release</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#release\">\n      Release</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repository\">\n      Repository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repository\">\n      Repository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreply\">\n      SavedReply</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreply\">\n      SavedReply</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#smimesignature\">\n      SmimeSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#smimesignature\">\n      SmimeSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#status\">\n      Status</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#status\">\n      Status</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscontext\">\n      StatusContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscontext\">\n      StatusContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submodule\">\n      Submodule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submodule\">\n      Submodule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tag\">\n      Tag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tag\">\n      Tag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#team\">\n      Team</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#team\">\n      Team</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamconnection\">\n      TeamConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamconnection\">\n      TeamConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamedge\">\n      TeamEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamedge\">\n      TeamEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatch\">\n      TextMatch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatch\">\n      TextMatch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#topic\">\n      Topic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#topic\">\n      Topic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferredevent\">\n      TransferredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferredevent\">\n      TransferredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tree\">\n      Tree</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tree\">\n      Tree</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#treeentry\">\n      TreeEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#treeentry\">\n      TreeEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#user\">\n      User</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#user\">\n      User</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userconnection\">\n      UserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userconnection\">\n      UserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useredge\">\n      UserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useredge\">\n      UserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatus\">\n      UserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatus\">\n      UserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflow\">\n      Workflow</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflow\">\n      Workflow</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflowrun\">\n      WorkflowRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflowrun\">\n      WorkflowRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -14247,3353 +14247,3353 @@
     "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses of the app.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The corresponding deployment for this job, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>Information about a pending deployment, if any, in this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>steps</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkstepconnection\">CheckStepConnection</a></code>)</p></td>\n<td><p>The check run&apos;s steps.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Step number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstep\">\n      <a href=\"#checkstep\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStep</h2>\n    <p>A single check step.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check step on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The step&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The index of the step in the list of steps of the parent check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondsToCompletion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of seconds to completion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepconnection\">\n      <a href=\"#checkstepconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepConnection</h2>\n    <p>The connection type for CheckStep.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkstepedge\">[CheckStepEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkstep\">[CheckStep]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepedge\">\n      <a href=\"#checkstepedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkstep\">CheckStep</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who triggered the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRun</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#workflowrun\">WorkflowRun</a></code>)</p></td>\n<td><p>The workflow run associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contentattachment\">\n      <a href=\"#contentattachment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContentAttachment</h2>\n    <p>A content attachment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body text of the content attachment. This parameter supports markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentReference</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#contentreference\">ContentReference!</a></code>)</p></td>\n<td><p>The content reference that the content attachment is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the content attachment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contentreference\">\n      <a href=\"#contentreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContentReference</h2>\n    <p>A content reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reference</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The reference of the content reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionrule\">\n      <a href=\"#deploymentprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRule</h2>\n    <p>A protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeout</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The timeout in minutes for this protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#deploymentprotectionruletype\">DeploymentProtectionRuleType!</a></code>)</p></td>\n<td><p>The type of protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleconnection\">\n      <a href=\"#deploymentprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleConnection</h2>\n    <p>The connection type for DeploymentProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentprotectionruleedge\">[DeploymentProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentprotectionrule\">[DeploymentProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleedge\">\n      <a href=\"#deploymentprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentprotectionrule\">DeploymentProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequest\">\n      <a href=\"#deploymentrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequest</h2>\n    <p>A request to deploy a workflow run to an environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>currentUserCanApprove</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can approve the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#environment\">Environment!</a></code>)</p></td>\n<td><p>The target environment of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimerStartedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestconnection\">\n      <a href=\"#deploymentrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestConnection</h2>\n    <p>The connection type for DeploymentRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentrequestedge\">[DeploymentRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentrequest\">[DeploymentRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestedge\">\n      <a href=\"#deploymentrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreview\">\n      <a href=\"#deploymentreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReview</h2>\n    <p>A deployment review.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>The environments approved or rejected.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#deploymentreviewstate\">DeploymentReviewState!</a></code>)</p></td>\n<td><p>The decision of the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that reviewed the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewconnection\">\n      <a href=\"#deploymentreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewConnection</h2>\n    <p>The connection type for DeploymentReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentreviewedge\">[DeploymentReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentreview\">[DeploymentReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewedge\">\n      <a href=\"#deploymentreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentreview\">DeploymentReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewerconnection\">\n      <a href=\"#deploymentreviewerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerConnection</h2>\n    <p>The connection type for DeploymentReviewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentrevieweredge\">[DeploymentReviewerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#deploymentreviewer\">[DeploymentReviewer]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrevieweredge\">\n      <a href=\"#deploymentrevieweredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#deploymentreviewer\">DeploymentReviewer</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussion\">\n      <a href=\"#discussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Discussion</h2>\n    <p>A discussion in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The comment chosen as this discussion&apos;s answer, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when a user chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The main text of the discussion post.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>category</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncategory\">DiscussionCategory!</a></code>)</p></td>\n<td><p>The category for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The replies to the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number identifying this discussion within the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategory\">\n      <a href=\"#discussioncategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategory</h2>\n    <p>A category for discussions in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An emoji representing this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>This category&apos;s emoji rendered as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswerable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryconnection\">\n      <a href=\"#discussioncategoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryConnection</h2>\n    <p>The connection type for DiscussionCategory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncategoryedge\">[DiscussionCategoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncategory\">[DiscussionCategory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryedge\">\n      <a href=\"#discussioncategoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncategory\">DiscussionCategory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncomment\">\n      <a href=\"#discussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionComment</h2>\n    <p>A comment on a discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when this replied-to comment was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion this comment was created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Has this comment been chosen as the answer of its discussion?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replies</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The threaded replies to this comment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment this comment is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMarkAsAnswer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user mark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnmarkAsAnswer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user unmark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentconnection\">\n      <a href=\"#discussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentConnection</h2>\n    <p>The connection type for DiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncommentedge\">[DiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncomment\">[DiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentedge\">\n      <a href=\"#discussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionconnection\">\n      <a href=\"#discussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionConnection</h2>\n    <p>The connection type for Discussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussionedge\">[DiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">[Discussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionedge\">\n      <a href=\"#discussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided default repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection!</a></code>)</p></td>\n<td><p>A list of domains owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter whether or not the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the default repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environment\">\n      <a href=\"#environment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Environment</h2>\n    <p>An environment.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>protectionRules</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentprotectionruleconnection\">DeploymentProtectionRuleConnection!</a></code>)</p></td>\n<td><p>The protection rules defined for this environment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentconnection\">\n      <a href=\"#environmentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentConnection</h2>\n    <p>The connection type for Environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#environmentedge\">[EnvironmentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#environment\">[Environment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentedge\">\n      <a href=\"#environmentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>claimant</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that has claimed the data attributed to this mannequin.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new default repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former default repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domains</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#verifiabledomainconnection\">VerifiableDomainConnection</a></code>)</p></td>\n<td><p>A list of domains owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isApproved</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is approved.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by if the domain is verified.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#verifiabledomainorder\">VerifiableDomainOrder</a></code>)</p>\n<p>Ordering options for verifiable domains returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the organization has verified its profile email and website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationDeliveryRestrictionEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#notificationrestrictionsettingvalue\">NotificationRestrictionSettingValue!</a></code>)</p></td>\n<td><p>Indicates if email notification delivery for this organization is restricted to verified or approved domains.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"package\">\n      <a href=\"#package\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Package</h2>\n    <p>Information for an uploaded package.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>latestVersion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find the latest version for the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#packagetype\">PackageType!</a></code>)</p></td>\n<td><p>Identifies the type of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this package belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packagestatistics\">PackageStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find package version by version string.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>version</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The package version.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>versions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageversionconnection\">PackageVersionConnection!</a></code>)</p></td>\n<td><p>list of versions for this package.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#packageversionorder\">PackageVersionOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageconnection\">\n      <a href=\"#packageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageConnection</h2>\n    <p>The connection type for Package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageedge\">[PackageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#package\">[Package]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageedge\">\n      <a href=\"#packageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefile\">\n      <a href=\"#packagefile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFile</h2>\n    <p>A file in a package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>md5</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>MD5 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Name of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The package version this file belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha1</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA1 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha256</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA256 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Size of the file in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to download the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileconnection\">\n      <a href=\"#packagefileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileConnection</h2>\n    <p>The connection type for PackageFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packagefileedge\">[PackageFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packagefile\">[PackageFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileedge\">\n      <a href=\"#packagefileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packagefile\">PackageFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagestatistics\">\n      <a href=\"#packagestatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageStatistics</h2>\n    <p>Represents a object that contains package activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagetag\">\n      <a href=\"#packagetag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageTag</h2>\n    <p>A version tag contains the mapping between a tag name and a version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the tag name of the version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Version that the tag is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversion\">\n      <a href=\"#packageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersion</h2>\n    <p>Information about a specific package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packagefileconnection\">PackageFileConnection!</a></code>)</p></td>\n<td><p>List of files associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#packagefileorder\">PackageFileOrder</a></code>)</p>\n<p>Ordering of the returned package files.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The package associated with this version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The platform this version was built for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preRelease</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this version is a pre-release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readme</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The README of this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The release associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageversionstatistics\">PackageVersionStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The package version summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The version string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionconnection\">\n      <a href=\"#packageversionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionConnection</h2>\n    <p>The connection type for PackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageversionedge\">[PackageVersionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageversion\">[PackageVersion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionedge\">\n      <a href=\"#packageversionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionstatistics\">\n      <a href=\"#packageversionstatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionStatistics</h2>\n    <p>Represents a object that contains package version activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussion\">\n      <a href=\"#pinneddiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussion</h2>\n    <p>A Pinned Discussion is a discussion pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">Discussion!</a></code>)</p></td>\n<td><p>The discussion that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gradientStopColors</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Color stops of the chosen gradient.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pinneddiscussionpattern\">PinnedDiscussionPattern!</a></code>)</p></td>\n<td><p>Background texture pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preconfiguredGradient</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pinneddiscussiongradient\">PinnedDiscussionGradient</a></code>)</p></td>\n<td><p>Preconfigured background gradient option.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionconnection\">\n      <a href=\"#pinneddiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionConnection</h2>\n    <p>The connection type for PinnedDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinneddiscussionedge\">[PinnedDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinneddiscussion\">[PinnedDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionedge\">\n      <a href=\"#pinneddiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinneddiscussion\">PinnedDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>Identifies the pull request title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReview</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The latest review given from the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReviewRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The person who has requested the viewer for review on this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (outdated or resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttemplate\">\n      <a href=\"#pullrequesttemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTemplate</h2>\n    <p>A repository pull request template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The filename of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the template belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactors</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactorconnection\">ReactorConnection!</a></code>)</p></td>\n<td><p>Reactors to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>users</code> is deprecated.</p><p>Reactors can now be mannequins, bots, and organizations. Use the <code>reactors</code> field instead. Removal on 2021-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactorconnection\">\n      <a href=\"#reactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorConnection</h2>\n    <p>The connection type for Reactor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactoredge\">[ReactorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#reactor\">[Reactor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactoredge\">\n      <a href=\"#reactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorEdge</h2>\n    <p>Represents an author of a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#reactor\">Reactor!</a></code>)</p></td>\n<td><p>The author of the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerAllowedToDismissReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the viewer allowed to dismiss reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection</a></code>)</p></td>\n<td><p>A list of users mentioned in the release description.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>Returns a single discussion from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the discussion to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCategories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncategoryconnection\">DiscussionCategoryConnection!</a></code>)</p></td>\n<td><p>A list of discussion categories that are available in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>categoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Only include discussions that belong to the category with this ID.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>Returns a single active environment from the current repository by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the environment to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>A list of environments that are in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnonymousAccessEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has anonymous Git read access feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedDiscussions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinneddiscussionconnection\">PinnedDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been pinned in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestTemplates</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequesttemplate\">[PullRequestTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of pull request templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of discussions that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorship\">\n      <a href=\"#sponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Sponsorship</h2>\n    <p>A sponsorship relationship between a sponsor and a maintainer.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOneTimePayment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this sponsorship represents a one-time payment versus a recurring sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>maintainer</code> is deprecated.</p><p><code>Sponsorship.maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead. Removal on 2020-04-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy!</a></code>)</p></td>\n<td><p>The privacy level for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>sponsor</code> is deprecated.</p><p><code>Sponsorship.sponsor</code> will be removed. Use <code>Sponsorship.sponsorEntity</code> instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorEntity</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization that is sponsoring, if you have permission to view them.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tierSelectedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the current tier was chosen for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipconnection\">\n      <a href=\"#sponsorshipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipConnection</h2>\n    <p>The connection type for Sponsorship.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#sponsorshipedge\">[SponsorshipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#sponsorship\">[Sponsorship]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipedge\">\n      <a href=\"#sponsorshipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/enterprise-server@3.2/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canReceiveOrganizationEmailsWhenNotificationsRestricted</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Could this user receive email notifications, if the organization had notification restrictions enabled?.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to check.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suspendedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the user was suspended.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomain\">\n      <a href=\"#verifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomain</h2>\n    <p>A domain that can be verified or approved for an organization or an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dnsHostName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The DNS host name that should be used for verification.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The unicode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundHostName</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected host name was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundVerificationToken</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected verification token was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isApproved</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is approved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequiredForPolicyEnforcement</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this domain is required to exist for an organization or enterprise policy to be enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner!</a></code>)</p></td>\n<td><p>The owner of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>punycodeEncodedDomain</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The punycode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tokenExpirationTime</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the current verification token will expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current verification token for the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainconnection\">\n      <a href=\"#verifiabledomainconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainConnection</h2>\n    <p>The connection type for VerifiableDomain.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#verifiabledomainedge\">[VerifiableDomainEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#verifiabledomain\">[VerifiableDomain]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomainedge\">\n      <a href=\"#verifiabledomainedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomainEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#verifiabledomain\">VerifiableDomain</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflow\">\n      <a href=\"#workflow\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Workflow</h2>\n    <p>A workflow contains meta information about an Actions workflow file.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflowrun\">\n      <a href=\"#workflowrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>WorkflowRun</h2>\n    <p>A workflow run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.2/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite this workflow run belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentReviews</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentreviewconnection\">DeploymentReviewConnection!</a></code>)</p></td>\n<td><p>The log of deployment reviews.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequests</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#deploymentrequestconnection\">DeploymentRequestConnection!</a></code>)</p></td>\n<td><p>The pending deployment requests of all check runs in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>runNumber</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number that uniquely identifies this workflow run in its parent workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflow</code> (<code><a href=\"/en/enterprise-server@3.2/graphql/reference/objects#workflow\">Workflow!</a></code>)</p></td>\n<td><p>The workflow executed in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#actorlocation\">\n      ActorLocation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#actorlocation\">\n      ActorLocation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#app\">\n      App</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#app\">\n      App</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#assignedevent\">\n      AssignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#assignedevent\">\n      AssignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blame\">\n      Blame</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blame\">\n      Blame</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blamerange\">\n      BlameRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blamerange\">\n      BlameRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blob\">\n      Blob</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blob\">\n      Blob</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bot\">\n      Bot</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bot\">\n      Bot</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cvss\">\n      CVSS</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cvss\">\n      CVSS</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cwe\">\n      CWE</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cwe\">\n      CWE</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweconnection\">\n      CWEConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweconnection\">\n      CWEConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweedge\">\n      CWEEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweedge\">\n      CWEEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrun\">\n      CheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrun\">\n      CheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstep\">\n      CheckStep</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstep\">\n      CheckStep</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuite\">\n      CheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuite\">\n      CheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closedevent\">\n      ClosedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closedevent\">\n      ClosedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commit\">\n      Commit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commit\">\n      Commit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcomment\">\n      CommitComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcomment\">\n      CommitComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitconnection\">\n      CommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitconnection\">\n      CommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitedge\">\n      CommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitedge\">\n      CommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contentattachment\">\n      ContentAttachment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contentattachment\">\n      ContentAttachment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contentreference\">\n      ContentReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contentreference\">\n      ContentReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykey\">\n      DeployKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykey\">\n      DeployKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployedevent\">\n      DeployedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployedevent\">\n      DeployedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployment\">\n      Deployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployment\">\n      Deployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussion\">\n      Discussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussion\">\n      Discussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprise\">\n      Enterprise</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprise\">\n      Enterprise</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environment\">\n      Environment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environment\">\n      Environment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followerconnection\">\n      FollowerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followerconnection\">\n      FollowerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followingconnection\">\n      FollowingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followingconnection\">\n      FollowingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gist\">\n      Gist</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gist\">\n      Gist</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcomment\">\n      GistComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcomment\">\n      GistComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistconnection\">\n      GistConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistconnection\">\n      GistConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistedge\">\n      GistEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistedge\">\n      GistEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistfile\">\n      GistFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistfile\">\n      GistFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactor\">\n      GitActor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactor\">\n      GitActor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gpgsignature\">\n      GpgSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gpgsignature\">\n      GpgSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#hovercard\">\n      Hovercard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#hovercard\">\n      Hovercard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issue\">\n      Issue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issue\">\n      Issue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecomment\">\n      IssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecomment\">\n      IssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueconnection\">\n      IssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueconnection\">\n      IssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueedge\">\n      IssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueedge\">\n      IssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#label\">\n      Label</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#label\">\n      Label</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelconnection\">\n      LabelConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelconnection\">\n      LabelConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledge\">\n      LabelEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledge\">\n      LabelEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledevent\">\n      LabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledevent\">\n      LabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#language\">\n      Language</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#language\">\n      Language</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageconnection\">\n      LanguageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageconnection\">\n      LanguageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageedge\">\n      LanguageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageedge\">\n      LanguageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#license\">\n      License</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#license\">\n      License</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#licenserule\">\n      LicenseRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#licenserule\">\n      LicenseRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#lockedevent\">\n      LockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#lockedevent\">\n      LockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mannequin\">\n      Mannequin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mannequin\">\n      Mannequin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergedevent\">\n      MergedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergedevent\">\n      MergedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestone\">\n      Milestone</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestone\">\n      Milestone</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organization\">\n      Organization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organization\">\n      Organization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#package\">\n      Package</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#package\">\n      Package</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageconnection\">\n      PackageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageconnection\">\n      PackageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageedge\">\n      PackageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageedge\">\n      PackageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefile\">\n      PackageFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefile\">\n      PackageFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagetag\">\n      PackageTag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagetag\">\n      PackageTag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversion\">\n      PackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversion\">\n      PackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pageinfo\">\n      PageInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pageinfo\">\n      PageInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#permissionsource\">\n      PermissionSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#permissionsource\">\n      PermissionSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#project\">\n      Project</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#project\">\n      Project</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcard\">\n      ProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcard\">\n      ProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectconnection\">\n      ProjectConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectconnection\">\n      ProjectConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectedge\">\n      ProjectEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectedge\">\n      ProjectEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectprogress\">\n      ProjectProgress</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectprogress\">\n      ProjectProgress</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickey\">\n      PublicKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickey\">\n      PublicKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequest\">\n      PullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequest\">\n      PullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#push\">\n      Push</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#push\">\n      Push</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowance\">\n      PushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowance\">\n      PushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ratelimit\">\n      RateLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ratelimit\">\n      RateLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reaction\">\n      Reaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reaction\">\n      Reaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionedge\">\n      ReactionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionedge\">\n      ReactionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactoredge\">\n      ReactorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactoredge\">\n      ReactorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ref\">\n      Ref</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ref\">\n      Ref</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refconnection\">\n      RefConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refconnection\">\n      RefConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refedge\">\n      RefEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refedge\">\n      RefEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#release\">\n      Release</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#release\">\n      Release</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repository\">\n      Repository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repository\">\n      Repository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreply\">\n      SavedReply</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreply\">\n      SavedReply</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#smimesignature\">\n      SmimeSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#smimesignature\">\n      SmimeSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorship\">\n      Sponsorship</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorship\">\n      Sponsorship</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#status\">\n      Status</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#status\">\n      Status</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscontext\">\n      StatusContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscontext\">\n      StatusContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submodule\">\n      Submodule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submodule\">\n      Submodule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tag\">\n      Tag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tag\">\n      Tag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#team\">\n      Team</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#team\">\n      Team</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamconnection\">\n      TeamConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamconnection\">\n      TeamConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamedge\">\n      TeamEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamedge\">\n      TeamEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatch\">\n      TextMatch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatch\">\n      TextMatch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#topic\">\n      Topic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#topic\">\n      Topic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferredevent\">\n      TransferredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferredevent\">\n      TransferredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tree\">\n      Tree</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tree\">\n      Tree</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#treeentry\">\n      TreeEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#treeentry\">\n      TreeEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#user\">\n      User</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#user\">\n      User</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userconnection\">\n      UserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userconnection\">\n      UserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useredge\">\n      UserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useredge\">\n      UserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatus\">\n      UserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatus\">\n      UserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainconnection\">\n      VerifiableDomainConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomainedge\">\n      VerifiableDomainEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflow\">\n      Workflow</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflow\">\n      Workflow</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflowrun\">\n      WorkflowRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflowrun\">\n      WorkflowRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -17605,3101 +17605,3101 @@
     "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The pull requests associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contentattachment\">\n      <a href=\"#contentattachment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContentAttachment</h2>\n    <p>A content attachment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body text of the content attachment. This parameter supports markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentReference</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#contentreference\">ContentReference!</a></code>)</p></td>\n<td><p>The content reference that the content attachment is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the content attachment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contentreference\">\n      <a href=\"#contentreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContentReference</h2>\n    <p>A content reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reference</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The reference of the content reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided default repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the default repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues or Milestones with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new default repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former default repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the organization has verified its profile email and website, always false on Enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"package\">\n      <a href=\"#package\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Package</h2>\n    <p>Information for an uploaded package.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>latestVersion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find the latest version for the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#packagetype\">PackageType!</a></code>)</p></td>\n<td><p>Identifies the type of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this package belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packagestatistics\">PackageStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find package version by version string.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>version</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The package version.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>versions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageversionconnection\">PackageVersionConnection!</a></code>)</p></td>\n<td><p>list of versions for this package.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#packageversionorder\">PackageVersionOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageconnection\">\n      <a href=\"#packageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageConnection</h2>\n    <p>The connection type for Package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageedge\">[PackageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#package\">[Package]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageedge\">\n      <a href=\"#packageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefile\">\n      <a href=\"#packagefile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFile</h2>\n    <p>A file in a package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>md5</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>MD5 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Name of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The package version this file belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha1</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA1 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha256</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA256 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Size of the file in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to download the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileconnection\">\n      <a href=\"#packagefileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileConnection</h2>\n    <p>The connection type for PackageFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packagefileedge\">[PackageFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packagefile\">[PackageFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileedge\">\n      <a href=\"#packagefileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packagefile\">PackageFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagestatistics\">\n      <a href=\"#packagestatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageStatistics</h2>\n    <p>Represents a object that contains package activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagetag\">\n      <a href=\"#packagetag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageTag</h2>\n    <p>A version tag contains the mapping between a tag name and a version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the tag name of the version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Version that the tag is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversion\">\n      <a href=\"#packageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersion</h2>\n    <p>Information about a specific package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packagefileconnection\">PackageFileConnection!</a></code>)</p></td>\n<td><p>List of files associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#packagefileorder\">PackageFileOrder</a></code>)</p>\n<p>Ordering of the returned package files.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The package associated with this version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The platform this version was built for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preRelease</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this version is a pre-release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readme</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The README of this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The release associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageversionstatistics\">PackageVersionStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The package version summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The version string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionconnection\">\n      <a href=\"#packageversionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionConnection</h2>\n    <p>The connection type for PackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageversionedge\">[PackageVersionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageversion\">[PackageVersion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionedge\">\n      <a href=\"#packageversionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionstatistics\">\n      <a href=\"#packageversionstatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionStatistics</h2>\n    <p>Represents a object that contains package version activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (outdated or resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnonymousAccessEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has anonymous Git read access feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A alert for a repository with an affected vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorship\">\n      <a href=\"#sponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Sponsorship</h2>\n    <p>A sponsorship relationship between a sponsor and a maintainer.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>maintainer</code> is deprecated.</p><p><code>Sponsorship.maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead. Removal on 2020-04-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy!</a></code>)</p></td>\n<td><p>The privacy level for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>sponsor</code> is deprecated.</p><p><code>Sponsorship.sponsor</code> will be removed. Use <code>Sponsorship.sponsorEntity</code> instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorEntity</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization that is sponsoring, if you have permission to view them.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipconnection\">\n      <a href=\"#sponsorshipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipConnection</h2>\n    <p>The connection type for Sponsorship.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#sponsorshipedge\">[SponsorshipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#sponsorship\">[Sponsorship]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipedge\">\n      <a href=\"#sponsorshipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/enterprise-server@3.1/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to and including this time will be\ncounted. If omitted, defaults to the current time.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suspendedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the user was suspended.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"verifiabledomain\">\n      <a href=\"#verifiabledomain\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>VerifiableDomain</h2>\n    <p>A domain that can be verified for an organization or an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dnsHostName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The DNS host name that should be used for verification.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>domain</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The unicode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundHostName</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected host name was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasFoundVerificationToken</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether a TXT record for verification with the expected verification token was found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequiredForPolicyEnforcement</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this domain is required to exist for an organization or enterprise policy to be enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the domain is verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/unions#verifiabledomainowner\">VerifiableDomainOwner!</a></code>)</p></td>\n<td><p>The owner of the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>punycodeEncodedDomain</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The punycode encoded domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tokenExpirationTime</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time that the current verification token will expire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verificationToken</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The current verification token for the domain.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.1/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.1/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#actorlocation\">\n      ActorLocation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#actorlocation\">\n      ActorLocation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#app\">\n      App</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#app\">\n      App</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#assignedevent\">\n      AssignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#assignedevent\">\n      AssignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blame\">\n      Blame</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blame\">\n      Blame</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blamerange\">\n      BlameRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blamerange\">\n      BlameRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blob\">\n      Blob</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blob\">\n      Blob</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bot\">\n      Bot</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bot\">\n      Bot</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cvss\">\n      CVSS</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cvss\">\n      CVSS</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cwe\">\n      CWE</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cwe\">\n      CWE</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweconnection\">\n      CWEConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweconnection\">\n      CWEConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweedge\">\n      CWEEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweedge\">\n      CWEEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrun\">\n      CheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrun\">\n      CheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuite\">\n      CheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuite\">\n      CheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closedevent\">\n      ClosedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closedevent\">\n      ClosedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commit\">\n      Commit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commit\">\n      Commit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcomment\">\n      CommitComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcomment\">\n      CommitComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitconnection\">\n      CommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitconnection\">\n      CommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitedge\">\n      CommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitedge\">\n      CommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contentattachment\">\n      ContentAttachment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contentattachment\">\n      ContentAttachment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contentreference\">\n      ContentReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contentreference\">\n      ContentReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykey\">\n      DeployKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykey\">\n      DeployKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployedevent\">\n      DeployedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployedevent\">\n      DeployedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployment\">\n      Deployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployment\">\n      Deployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprise\">\n      Enterprise</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprise\">\n      Enterprise</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followerconnection\">\n      FollowerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followerconnection\">\n      FollowerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followingconnection\">\n      FollowingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followingconnection\">\n      FollowingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gist\">\n      Gist</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gist\">\n      Gist</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcomment\">\n      GistComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcomment\">\n      GistComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistconnection\">\n      GistConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistconnection\">\n      GistConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistedge\">\n      GistEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistedge\">\n      GistEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistfile\">\n      GistFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistfile\">\n      GistFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactor\">\n      GitActor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactor\">\n      GitActor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gpgsignature\">\n      GpgSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gpgsignature\">\n      GpgSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#hovercard\">\n      Hovercard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#hovercard\">\n      Hovercard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issue\">\n      Issue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issue\">\n      Issue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecomment\">\n      IssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecomment\">\n      IssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueconnection\">\n      IssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueconnection\">\n      IssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueedge\">\n      IssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueedge\">\n      IssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#label\">\n      Label</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#label\">\n      Label</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelconnection\">\n      LabelConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelconnection\">\n      LabelConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledge\">\n      LabelEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledge\">\n      LabelEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledevent\">\n      LabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledevent\">\n      LabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#language\">\n      Language</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#language\">\n      Language</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageconnection\">\n      LanguageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageconnection\">\n      LanguageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageedge\">\n      LanguageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageedge\">\n      LanguageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#license\">\n      License</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#license\">\n      License</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#licenserule\">\n      LicenseRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#licenserule\">\n      LicenseRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#lockedevent\">\n      LockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#lockedevent\">\n      LockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mannequin\">\n      Mannequin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mannequin\">\n      Mannequin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergedevent\">\n      MergedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergedevent\">\n      MergedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestone\">\n      Milestone</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestone\">\n      Milestone</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organization\">\n      Organization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organization\">\n      Organization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#package\">\n      Package</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#package\">\n      Package</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageconnection\">\n      PackageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageconnection\">\n      PackageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageedge\">\n      PackageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageedge\">\n      PackageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefile\">\n      PackageFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefile\">\n      PackageFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagetag\">\n      PackageTag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagetag\">\n      PackageTag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversion\">\n      PackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversion\">\n      PackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pageinfo\">\n      PageInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pageinfo\">\n      PageInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#permissionsource\">\n      PermissionSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#permissionsource\">\n      PermissionSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#project\">\n      Project</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#project\">\n      Project</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcard\">\n      ProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcard\">\n      ProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectconnection\">\n      ProjectConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectconnection\">\n      ProjectConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectedge\">\n      ProjectEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectedge\">\n      ProjectEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectprogress\">\n      ProjectProgress</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectprogress\">\n      ProjectProgress</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickey\">\n      PublicKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickey\">\n      PublicKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequest\">\n      PullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequest\">\n      PullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#push\">\n      Push</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#push\">\n      Push</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowance\">\n      PushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowance\">\n      PushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ratelimit\">\n      RateLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ratelimit\">\n      RateLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reaction\">\n      Reaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reaction\">\n      Reaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionedge\">\n      ReactionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionedge\">\n      ReactionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ref\">\n      Ref</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ref\">\n      Ref</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refconnection\">\n      RefConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refconnection\">\n      RefConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refedge\">\n      RefEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refedge\">\n      RefEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#release\">\n      Release</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#release\">\n      Release</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repository\">\n      Repository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repository\">\n      Repository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreply\">\n      SavedReply</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreply\">\n      SavedReply</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#smimesignature\">\n      SmimeSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#smimesignature\">\n      SmimeSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorship\">\n      Sponsorship</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorship\">\n      Sponsorship</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#status\">\n      Status</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#status\">\n      Status</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscontext\">\n      StatusContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscontext\">\n      StatusContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submodule\">\n      Submodule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submodule\">\n      Submodule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tag\">\n      Tag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tag\">\n      Tag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#team\">\n      Team</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#team\">\n      Team</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamconnection\">\n      TeamConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamconnection\">\n      TeamConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamedge\">\n      TeamEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamedge\">\n      TeamEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatch\">\n      TextMatch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatch\">\n      TextMatch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#topic\">\n      Topic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#topic\">\n      Topic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferredevent\">\n      TransferredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferredevent\">\n      TransferredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tree\">\n      Tree</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tree\">\n      Tree</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#treeentry\">\n      TreeEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#treeentry\">\n      TreeEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#user\">\n      User</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#user\">\n      User</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userconnection\">\n      UserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userconnection\">\n      UserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useredge\">\n      UserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useredge\">\n      UserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatus\">\n      UserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatus\">\n      UserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#verifiabledomain\">\n      VerifiableDomain</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -20711,3031 +20711,3031 @@
     "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The pull requests associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if commited via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committership details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contentattachment\">\n      <a href=\"#contentattachment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContentAttachment</h2>\n    <p>A content attachment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body text of the content attachment. This parameter supports markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contentReference</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#contentreference\">ContentReference!</a></code>)</p></td>\n<td><p>The content reference that the content attachment is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the content attachment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contentreference\">\n      <a href=\"#contentreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContentReference</h2>\n    <p>A content reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reference</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The reference of the content reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided default repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the default repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues or Milestones with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Indentifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignemnts for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new default repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former default repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isVerified</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the organization has verified its profile email and website, always false on Enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provder to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"package\">\n      <a href=\"#package\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Package</h2>\n    <p>Information for an uploaded package.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>latestVersion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find the latest version for the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#packagetype\">PackageType!</a></code>)</p></td>\n<td><p>Identifies the type of the package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this package belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packagestatistics\">PackageStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Find package version by version string.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>version</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The package version.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>versions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageversionconnection\">PackageVersionConnection!</a></code>)</p></td>\n<td><p>list of versions for this package.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#packageversionorder\">PackageVersionOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageconnection\">\n      <a href=\"#packageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageConnection</h2>\n    <p>The connection type for Package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageedge\">[PackageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#package\">[Package]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageedge\">\n      <a href=\"#packageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefile\">\n      <a href=\"#packagefile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFile</h2>\n    <p>A file in a package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>md5</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>MD5 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Name of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packageVersion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The package version this file belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha1</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA1 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sha256</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>SHA256 hash of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Size of the file in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to download the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileconnection\">\n      <a href=\"#packagefileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileConnection</h2>\n    <p>The connection type for PackageFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packagefileedge\">[PackageFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packagefile\">[PackageFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagefileedge\">\n      <a href=\"#packagefileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packagefile\">PackageFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagestatistics\">\n      <a href=\"#packagestatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageStatistics</h2>\n    <p>Represents a object that contains package activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packagetag\">\n      <a href=\"#packagetag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageTag</h2>\n    <p>A version tag contains the mapping between a tag name and a version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the tag name of the version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>Version that the tag is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversion\">\n      <a href=\"#packageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersion</h2>\n    <p>Information about a specific package version.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packagefileconnection\">PackageFileConnection!</a></code>)</p></td>\n<td><p>List of files associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#packagefileorder\">PackageFileOrder</a></code>)</p>\n<p>Ordering of the returned package files.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#package\">Package</a></code>)</p></td>\n<td><p>The package associated with this version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>platform</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The platform this version was built for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preRelease</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this version is a pre-release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readme</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The README of this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The release associated with this package version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statistics</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageversionstatistics\">PackageVersionStatistics</a></code>)</p></td>\n<td><p>Statistics about package activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The package version summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>version</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The version string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionconnection\">\n      <a href=\"#packageversionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionConnection</h2>\n    <p>The connection type for PackageVersion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageversionedge\">[PackageVersionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageversion\">[PackageVersion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionedge\">\n      <a href=\"#packageversionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageversion\">PackageVersion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"packageversionstatistics\">\n      <a href=\"#packageversionstatistics\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PackageVersionStatistics</h2>\n    <p>Represents a object that contains package version activity statistics such as downloads.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>downloadsTotalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of times the package was downloaded since it was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>PinnedIssue</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#pinned-issues-preview\">Pinned issues preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>PinnedIssueConnection</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#pinned-issues-preview\">Pinned issues preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>PinnedIssueEdge</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#pinned-issues-preview\">Pinned issues preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (outdated or resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this netork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnonymousAccessEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has anonymous Git read access feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>pinnedIssues</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#pinned-issues-preview\">Pinned issues preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A alert for a repository with an affected vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dimissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerablity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorship\">\n      <a href=\"#sponsorship\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Sponsorship</h2>\n    <p>A sponsorship relationship between a sponsor and a maintainer.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>maintainer</code> is deprecated.</p><p><code>Sponsorship.maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead. Removal on 2020-04-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacyLevel</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#sponsorshipprivacy\">SponsorshipPrivacy!</a></code>)</p></td>\n<td><p>The privacy level for this sponsorship.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>sponsor</code> is deprecated.</p><p><code>Sponsorship.sponsor</code> will be removed. Use <code>Sponsorship.sponsorEntity</code> instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorEntity</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#sponsor\">Sponsor</a></code>)</p></td>\n<td><p>The user or organization that is sponsoring, if you have permission to view them.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#sponsorable\">Sponsorable!</a></code>)</p></td>\n<td><p>The entity that is being sponsored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipconnection\">\n      <a href=\"#sponsorshipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipConnection</h2>\n    <p>The connection type for Sponsorship.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#sponsorshipedge\">[SponsorshipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#sponsorship\">[Sponsorship]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"sponsorshipedge\">\n      <a href=\"#sponsorshipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SponsorshipEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#sponsorship\">Sponsorship</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/enterprise-server@3.0/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#packageowner\">PackageOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#sponsorable\">Sponsorable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to and including this time will be\ncounted. If omitted, defaults to the current time.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>packages</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#packageconnection\">PackageConnection!</a></code>)</p></td>\n<td><p>A list of packages under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>names</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String]</a></code>)</p>\n<p>Find packages by their names.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#packageorder\">PackageOrder</a></code>)</p>\n<p>Ordering of the returned packages.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>packageType</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#packagetype\">PackageType</a></code>)</p>\n<p>Filter registry package by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Find packages in a repository by ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsMaintainer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the maintainer.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includePrivate</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include private sponsorships in the result set.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sponsorshipsAsSponsor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#sponsorshipconnection\">SponsorshipConnection!</a></code>)</p></td>\n<td><p>This object&apos;s sponsorships as the sponsor.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#sponsorshiporder\">SponsorshipOrder</a></code>)</p>\n<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suspendedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the user was suspended.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>id</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#id\">ID!</a></code>)</p></td>\n<td><p>ID of the object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/enterprise-server@3.0/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/enterprise-server@3.0/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#actorlocation\">\n      ActorLocation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#actorlocation\">\n      ActorLocation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#app\">\n      App</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#app\">\n      App</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#assignedevent\">\n      AssignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#assignedevent\">\n      AssignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blame\">\n      Blame</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blame\">\n      Blame</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blamerange\">\n      BlameRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blamerange\">\n      BlameRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blob\">\n      Blob</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blob\">\n      Blob</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bot\">\n      Bot</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bot\">\n      Bot</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrun\">\n      CheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrun\">\n      CheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuite\">\n      CheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuite\">\n      CheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closedevent\">\n      ClosedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closedevent\">\n      ClosedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commit\">\n      Commit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commit\">\n      Commit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcomment\">\n      CommitComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcomment\">\n      CommitComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitconnection\">\n      CommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitconnection\">\n      CommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitedge\">\n      CommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitedge\">\n      CommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contentattachment\">\n      ContentAttachment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contentattachment\">\n      ContentAttachment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contentreference\">\n      ContentReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contentreference\">\n      ContentReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykey\">\n      DeployKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykey\">\n      DeployKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployedevent\">\n      DeployedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployedevent\">\n      DeployedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployment\">\n      Deployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployment\">\n      Deployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprise\">\n      Enterprise</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprise\">\n      Enterprise</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followerconnection\">\n      FollowerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followerconnection\">\n      FollowerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followingconnection\">\n      FollowingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followingconnection\">\n      FollowingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gist\">\n      Gist</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gist\">\n      Gist</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcomment\">\n      GistComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcomment\">\n      GistComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistconnection\">\n      GistConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistconnection\">\n      GistConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistedge\">\n      GistEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistedge\">\n      GistEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistfile\">\n      GistFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistfile\">\n      GistFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactor\">\n      GitActor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactor\">\n      GitActor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gpgsignature\">\n      GpgSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gpgsignature\">\n      GpgSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#hovercard\">\n      Hovercard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#hovercard\">\n      Hovercard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issue\">\n      Issue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issue\">\n      Issue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecomment\">\n      IssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecomment\">\n      IssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueconnection\">\n      IssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueconnection\">\n      IssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueedge\">\n      IssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueedge\">\n      IssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#label\">\n      Label</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#label\">\n      Label</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelconnection\">\n      LabelConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelconnection\">\n      LabelConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledge\">\n      LabelEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledge\">\n      LabelEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledevent\">\n      LabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledevent\">\n      LabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#language\">\n      Language</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#language\">\n      Language</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageconnection\">\n      LanguageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageconnection\">\n      LanguageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageedge\">\n      LanguageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageedge\">\n      LanguageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#license\">\n      License</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#license\">\n      License</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#licenserule\">\n      LicenseRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#licenserule\">\n      LicenseRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#lockedevent\">\n      LockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#lockedevent\">\n      LockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mannequin\">\n      Mannequin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mannequin\">\n      Mannequin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergedevent\">\n      MergedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergedevent\">\n      MergedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestone\">\n      Milestone</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestone\">\n      Milestone</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organization\">\n      Organization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organization\">\n      Organization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#package\">\n      Package</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#package\">\n      Package</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageconnection\">\n      PackageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageconnection\">\n      PackageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageedge\">\n      PackageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageedge\">\n      PackageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefile\">\n      PackageFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefile\">\n      PackageFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileconnection\">\n      PackageFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagefileedge\">\n      PackageFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagestatistics\">\n      PackageStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packagetag\">\n      PackageTag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packagetag\">\n      PackageTag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversion\">\n      PackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversion\">\n      PackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionconnection\">\n      PackageVersionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionedge\">\n      PackageVersionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#packageversionstatistics\">\n      PackageVersionStatistics</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pageinfo\">\n      PageInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pageinfo\">\n      PageInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#permissionsource\">\n      PermissionSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#permissionsource\">\n      PermissionSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#project\">\n      Project</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#project\">\n      Project</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcard\">\n      ProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcard\">\n      ProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectconnection\">\n      ProjectConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectconnection\">\n      ProjectConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectedge\">\n      ProjectEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectedge\">\n      ProjectEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectprogress\">\n      ProjectProgress</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectprogress\">\n      ProjectProgress</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickey\">\n      PublicKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickey\">\n      PublicKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequest\">\n      PullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequest\">\n      PullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#push\">\n      Push</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#push\">\n      Push</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowance\">\n      PushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowance\">\n      PushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ratelimit\">\n      RateLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ratelimit\">\n      RateLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reaction\">\n      Reaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reaction\">\n      Reaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionedge\">\n      ReactionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionedge\">\n      ReactionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ref\">\n      Ref</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ref\">\n      Ref</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refconnection\">\n      RefConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refconnection\">\n      RefConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refedge\">\n      RefEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refedge\">\n      RefEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#release\">\n      Release</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#release\">\n      Release</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repository\">\n      Repository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repository\">\n      Repository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreply\">\n      SavedReply</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreply\">\n      SavedReply</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#smimesignature\">\n      SmimeSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#smimesignature\">\n      SmimeSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorship\">\n      Sponsorship</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorship\">\n      Sponsorship</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipconnection\">\n      SponsorshipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#sponsorshipedge\">\n      SponsorshipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#status\">\n      Status</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#status\">\n      Status</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscontext\">\n      StatusContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscontext\">\n      StatusContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submodule\">\n      Submodule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submodule\">\n      Submodule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tag\">\n      Tag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tag\">\n      Tag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#team\">\n      Team</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#team\">\n      Team</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamconnection\">\n      TeamConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamconnection\">\n      TeamConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamedge\">\n      TeamEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamedge\">\n      TeamEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatch\">\n      TextMatch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatch\">\n      TextMatch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#topic\">\n      Topic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#topic\">\n      Topic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferredevent\">\n      TransferredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferredevent\">\n      TransferredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tree\">\n      Tree</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tree\">\n      Tree</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#treeentry\">\n      TreeEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#treeentry\">\n      TreeEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#user\">\n      User</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#user\">\n      User</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userconnection\">\n      UserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userconnection\">\n      UserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useredge\">\n      UserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useredge\">\n      UserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatus\">\n      UserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatus\">\n      UserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
@@ -23744,3328 +23744,3328 @@
     ]
   },
   "ghae": {
-    "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses of the app.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushAllowances</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypassforcepushallowanceconnection\">BypassForcePushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to force push for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestAllowances</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypasspullrequestallowanceconnection\">BypassPullRequestAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to bypass PRs for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#requiredstatuscheckdescription\">[RequiredStatusCheckDescription!]</a></code>)</p></td>\n<td><p>List of required status checks that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowance\">\n      <a href=\"#bypassforcepushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowance</h2>\n    <p>A team or user who has the ability to bypass a force push requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceconnection\">\n      <a href=\"#bypassforcepushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceConnection</h2>\n    <p>The connection type for BypassForcePushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypassforcepushallowanceedge\">[BypassForcePushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypassforcepushallowance\">[BypassForcePushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceedge\">\n      <a href=\"#bypassforcepushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypassforcepushallowance\">BypassForcePushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowance\">\n      <a href=\"#bypasspullrequestallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowance</h2>\n    <p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceconnection\">\n      <a href=\"#bypasspullrequestallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceConnection</h2>\n    <p>The connection type for BypassPullRequestAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypasspullrequestallowanceedge\">[BypassPullRequestAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypasspullrequestallowance\">[BypassPullRequestAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceedge\">\n      <a href=\"#bypasspullrequestallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypasspullrequestallowance\">BypassPullRequestAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The corresponding deployment for this job, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>Information about a pending deployment, if any, in this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>steps</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkstepconnection\">CheckStepConnection</a></code>)</p></td>\n<td><p>The check run&apos;s steps.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Step number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstep\">\n      <a href=\"#checkstep\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStep</h2>\n    <p>A single check step.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check step on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The step&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The index of the step in the list of steps of the parent check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondsToCompletion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of seconds to completion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepconnection\">\n      <a href=\"#checkstepconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepConnection</h2>\n    <p>The connection type for CheckStep.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkstepedge\">[CheckStepEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkstep\">[CheckStep]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepedge\">\n      <a href=\"#checkstepedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkstep\">CheckStep</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who triggered the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRun</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#workflowrun\">WorkflowRun</a></code>)</p></td>\n<td><p>The workflow run associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertedtodiscussionevent\">\n      <a href=\"#convertedtodiscussionevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedToDiscussionEvent</h2>\n    <p>Represents a<code>converted_to_discussion</code>event on a given issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that the issue was converted into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionrule\">\n      <a href=\"#deploymentprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRule</h2>\n    <p>A protection rule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeout</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The timeout in minutes for this protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentprotectionruletype\">DeploymentProtectionRuleType!</a></code>)</p></td>\n<td><p>The type of protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleconnection\">\n      <a href=\"#deploymentprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleConnection</h2>\n    <p>The connection type for DeploymentProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentprotectionruleedge\">[DeploymentProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentprotectionrule\">[DeploymentProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleedge\">\n      <a href=\"#deploymentprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentprotectionrule\">DeploymentProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequest\">\n      <a href=\"#deploymentrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequest</h2>\n    <p>A request to deploy a workflow run to an environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>currentUserCanApprove</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can approve the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">Environment!</a></code>)</p></td>\n<td><p>The target environment of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimerStartedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestconnection\">\n      <a href=\"#deploymentrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestConnection</h2>\n    <p>The connection type for DeploymentRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequestedge\">[DeploymentRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequest\">[DeploymentRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestedge\">\n      <a href=\"#deploymentrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreview\">\n      <a href=\"#deploymentreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReview</h2>\n    <p>A deployment review.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>The environments approved or rejected.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentreviewstate\">DeploymentReviewState!</a></code>)</p></td>\n<td><p>The decision of the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that reviewed the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewconnection\">\n      <a href=\"#deploymentreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewConnection</h2>\n    <p>The connection type for DeploymentReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreviewedge\">[DeploymentReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreview\">[DeploymentReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewedge\">\n      <a href=\"#deploymentreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreview\">DeploymentReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewerconnection\">\n      <a href=\"#deploymentreviewerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerConnection</h2>\n    <p>The connection type for DeploymentReviewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrevieweredge\">[DeploymentReviewerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#deploymentreviewer\">[DeploymentReviewer]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrevieweredge\">\n      <a href=\"#deploymentrevieweredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#deploymentreviewer\">DeploymentReviewer</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussion\">\n      <a href=\"#discussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Discussion</h2>\n    <p>A discussion in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The comment chosen as this discussion&apos;s answer, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when a user chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The main text of the discussion post.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>category</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategory\">DiscussionCategory!</a></code>)</p></td>\n<td><p>The category for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The replies to the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number identifying this discussion within the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategory\">\n      <a href=\"#discussioncategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategory</h2>\n    <p>A category for discussions in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An emoji representing this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>This category&apos;s emoji rendered as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswerable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryconnection\">\n      <a href=\"#discussioncategoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryConnection</h2>\n    <p>The connection type for DiscussionCategory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategoryedge\">[DiscussionCategoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategory\">[DiscussionCategory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryedge\">\n      <a href=\"#discussioncategoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategory\">DiscussionCategory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncomment\">\n      <a href=\"#discussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionComment</h2>\n    <p>A comment on a discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when this replied-to comment was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion this comment was created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Has this comment been chosen as the answer of its discussion?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replies</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The threaded replies to this comment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment this comment is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMarkAsAnswer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user mark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnmarkAsAnswer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user unmark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentconnection\">\n      <a href=\"#discussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentConnection</h2>\n    <p>The connection type for DiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentedge\">[DiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">[DiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentedge\">\n      <a href=\"#discussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionconnection\">\n      <a href=\"#discussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionConnection</h2>\n    <p>The connection type for Discussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussionedge\">[DiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">[Discussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionedge\">\n      <a href=\"#discussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>viewerOrganizationRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The viewer&apos;s role in an organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided base repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the base repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environment\">\n      <a href=\"#environment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Environment</h2>\n    <p>An environment.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>protectionRules</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentprotectionruleconnection\">DeploymentProtectionRuleConnection!</a></code>)</p></td>\n<td><p>The protection rules defined for this environment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentconnection\">\n      <a href=\"#environmentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentConnection</h2>\n    <p>The connection type for Environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environmentedge\">[EnvironmentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">[Environment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentedge\">\n      <a href=\"#environmentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>claimant</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that has claimed the data attributed to this mannequin.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"migrationsource\">\n      <a href=\"#migrationsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MigrationSource</h2>\n    <p>An Octoshift migration source.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseOwners</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationenterpriseownerconnection\">OrganizationEnterpriseOwnerConnection!</a></code>)</p></td>\n<td><p>A list of owners of the organization&apos;s enterprise account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#orgenterpriseownerorder\">OrgEnterpriseOwnerOrder</a></code>)</p>\n<p>Ordering options for enterprise owners returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The organization role to filter by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanForkPrivateRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Members can fork private repositories in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryMigrations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorymigrationconnection\">RepositoryMigrationConnection!</a></code>)</p></td>\n<td><p>A list of all repository migrations for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositorymigrationorder\">RepositoryMigrationOrder</a></code>)</p>\n<p>Ordering options for repository migrations returned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#migrationstate\">MigrationState</a></code>)</p>\n<p>Filter repository migrations by state.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>A list of organizations managed by an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseownerconnection\">\n      <a href=\"#organizationenterpriseownerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationenterpriseowneredge\">[OrganizationEnterpriseOwnerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseowneredge\">\n      <a href=\"#organizationenterpriseowneredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerEdge</h2>\n    <p>An enterprise owner in the context of an organization that is part of the enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role of the owner with respect to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussion\">\n      <a href=\"#pinneddiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussion</h2>\n    <p>A Pinned Discussion is a discussion pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion!</a></code>)</p></td>\n<td><p>The discussion that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gradientStopColors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Color stops of the chosen gradient.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinneddiscussionpattern\">PinnedDiscussionPattern!</a></code>)</p></td>\n<td><p>Background texture pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preconfiguredGradient</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinneddiscussiongradient\">PinnedDiscussionGradient</a></code>)</p></td>\n<td><p>Preconfigured background gradient option.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionconnection\">\n      <a href=\"#pinneddiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionConnection</h2>\n    <p>The connection type for PinnedDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinneddiscussionedge\">[PinnedDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinneddiscussion\">[PinnedDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionedge\">\n      <a href=\"#pinneddiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinneddiscussion\">PinnedDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLinkedOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Return only manually linked Issues.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>Identifies the pull request title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The latest review given from the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReviewRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The person who has requested the viewer for review on this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttemplate\">\n      <a href=\"#pullrequesttemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTemplate</h2>\n    <p>A repository pull request template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The filename of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the template belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactorconnection\">ReactorConnection!</a></code>)</p></td>\n<td><p>Reactors to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>users</code> is deprecated.</p><p>Reactors can now be mannequins, bots, and organizations. Use the <code>reactors</code> field instead. Removal on 2021-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactorconnection\">\n      <a href=\"#reactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorConnection</h2>\n    <p>The connection type for Reactor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactoredge\">[ReactorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#reactor\">[Reactor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactoredge\">\n      <a href=\"#reactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorEdge</h2>\n    <p>Represents an author of a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#reactor\">Reactor!</a></code>)</p></td>\n<td><p>The author of the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerAllowedToDismissReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the viewer allowed to dismiss reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection</a></code>)</p></td>\n<td><p>A list of users mentioned in the release description.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not Auto-merge can be enabled on pull requests in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeowners</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycodeowners\">RepositoryCodeowners</a></code>)</p></td>\n<td><p>Information extracted from the repository&apos;s <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The ref name used to return the associated <code>CODEOWNERS</code> file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>Returns a single discussion from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the discussion to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCategories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategoryconnection\">DiscussionCategoryConnection!</a></code>)</p></td>\n<td><p>A list of discussion categories that are available in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterByAssignable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by categories that are assignable by the viewer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>categoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Only include discussions that belong to the category with this ID.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>Returns a single active environment from the current repository by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the environment to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>A list of environments that are in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository allows forks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnonymousAccessEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has anonymous Git read access feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedDiscussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinneddiscussionconnection\">PinnedDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been pinned in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestTemplates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttemplate\">[PullRequestTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of pull request templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvulnerabilityalertstate\">[RepositoryVulnerabilityAlertState!]</a></code>)</p>\n<p>Filter by the state of the alert.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeowners\">\n      <a href=\"#repositorycodeowners\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeowners</h2>\n    <p>Information extracted from a repository&apos;s <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>errors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycodeownerserror\">[RepositoryCodeownersError!]!</a></code>)</p></td>\n<td><p>Any problems that were encountered while parsing the <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeownerserror\">\n      <a href=\"#repositorycodeownerserror\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeownersError</h2>\n    <p>An error in a <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The column number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short string describing the type of error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A complete description of the error, combining information from other fields.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to the file when the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the line where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A suggestion of how to fix the error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigration\">\n      <a href=\"#repositorymigration\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigration</h2>\n    <p>An Octoshift repository migration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#migration\">Migration</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The Octoshift migration flag to continue on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>failureReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the migration failed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>migrationSource</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#migrationsource\">MigrationSource!</a></code>)</p></td>\n<td><p>The Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#migrationstate\">MigrationState!</a></code>)</p></td>\n<td><p>The Octoshift migration state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationconnection\">\n      <a href=\"#repositorymigrationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationConnection</h2>\n    <p>The connection type for RepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorymigrationedge\">[RepositoryMigrationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorymigration\">[RepositoryMigration]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationedge\">\n      <a href=\"#repositorymigrationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationEdge</h2>\n    <p>Represents a repository migration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorymigration\">RepositoryMigration</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was marked as fixed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert fixed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the alert number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvulnerabilityalertstate\">RepositoryVulnerabilityAlertState!</a></code>)</p></td>\n<td><p>Identifies the state of the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckdescription\">\n      <a href=\"#requiredstatuscheckdescription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckDescription</h2>\n    <p>Represents a required status check for a protected branch, but not any specific run of that check.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The App that must provide this status in order for it to be accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of discussions that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canReceiveOrganizationEmailsWhenNotificationsRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Could this user receive email notifications, if the organization had notification restrictions enabled?.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to check.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFollowingViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is following the viewer. Inverse of viewer_is_following.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suspendedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the user was suspended.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer. Inverse of is_following_viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflow\">\n      <a href=\"#workflow\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Workflow</h2>\n    <p>A workflow contains meta information about an Actions workflow file.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflowrun\">\n      <a href=\"#workflowrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>WorkflowRun</h2>\n    <p>A workflow run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite this workflow run belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreviewconnection\">DeploymentReviewConnection!</a></code>)</p></td>\n<td><p>The log of deployment reviews.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequestconnection\">DeploymentRequestConnection!</a></code>)</p></td>\n<td><p>The pending deployment requests of all check runs in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>runNumber</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number that uniquely identifies this workflow run in its parent workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflow</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#workflow\">Workflow!</a></code>)</p></td>\n<td><p>The workflow executed in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
+    "html": "<div>\n  <div>\n    <h2 id=\"actorlocation\">\n      <a href=\"#actorlocation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ActorLocation</h2>\n    <p>Location information for an actor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>city</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>City.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>country</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>countryCode</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Country code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>region</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>regionCode</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Region or state code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"addedtoprojectevent\">\n      <a href=\"#addedtoprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AddedToProjectEvent</h2>\n    <p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"app\">\n      <a href=\"#app\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>App</h2>\n    <p>A GitHub App.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses of the app.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoBackgroundColor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code, without the leading &apos;#&apos;, for the logo background.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logoUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the app&apos;s logo.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the app.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A slug based on the name of the app for use in URLs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to the app&apos;s homepage.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"assignedevent\">\n      <a href=\"#assignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AssignedEvent</h2>\n    <p>Represents an<code>assigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was assigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who was assigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergedisabledevent\">\n      <a href=\"#automergedisabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeDisabledEvent</h2>\n    <p>Represents a<code>auto_merge_disabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>disabler</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who disabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reasonCode</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason_code relating to why auto-merge was disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergeenabledevent\">\n      <a href=\"#automergeenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeEnabledEvent</h2>\n    <p>Represents a<code>auto_merge_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automergerequest\">\n      <a href=\"#automergerequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoMergeRequest</h2>\n    <p>Represents an auto-merge request for a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>authorEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the author of this auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitBody</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit message of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitHeadline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The commit title of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was this auto-merge request was enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabledBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The merge method of the auto-merge request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that this auto-merge request is set against.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autorebaseenabledevent\">\n      <a href=\"#autorebaseenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoRebaseEnabledEvent</h2>\n    <p>Represents a<code>auto_rebase_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (rebase) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"autosquashenabledevent\">\n      <a href=\"#autosquashenabledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutoSquashEnabledEvent</h2>\n    <p>Represents a<code>auto_squash_enabled</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabler</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who enabled auto-merge (squash) for this Pull Request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangefailedevent\">\n      <a href=\"#automaticbasechangefailedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeFailedEvent</h2>\n    <p>Represents a<code>automatic_base_change_failed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"automaticbasechangesucceededevent\">\n      <a href=\"#automaticbasechangesucceededevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>AutomaticBaseChangeSucceededEvent</h2>\n    <p>Represents a<code>automatic_base_change_succeeded</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newBase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The new base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oldBase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The old base for this PR.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefchangedevent\">\n      <a href=\"#baserefchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefChangedEvent</h2>\n    <p>Represents a<code>base_ref_changed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request after it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base ref for the pull request before it was changed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefdeletedevent\">\n      <a href=\"#baserefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefDeletedEvent</h2>\n    <p>Represents a<code>base_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>base_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"baserefforcepushedevent\">\n      <a href=\"#baserefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BaseRefForcePushedEvent</h2>\n    <p>Represents a<code>base_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>base_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blame\">\n      <a href=\"#blame\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blame</h2>\n    <p>Represents a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ranges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#blamerange\">[BlameRange!]!</a></code>)</p></td>\n<td><p>The list of ranges from a Git blame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blamerange\">\n      <a href=\"#blamerange\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BlameRange</h2>\n    <p>Represents a range of information from a Git blame.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>age</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange&apos;s change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>Identifies the line author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endingLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ending line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startingLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The starting line for the range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"blob\">\n      <a href=\"#blob\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Blob</h2>\n    <p>Represents a Git blob.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>byteSize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Byte size of Blob object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBinary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the contents is truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the Blob is binary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bot\">\n      <a href=\"#bot\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Bot</h2>\n    <p>A special type of user which takes actions on behalf of GitHub Apps.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this bot.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionrule\">\n      <a href=\"#branchprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRule</h2>\n    <p>A branch protection rule.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRuleConflicts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconflictconnection\">BranchProtectionRuleConflictConnection!</a></code>)</p></td>\n<td><p>A list of conflicts matching branches protection rule and other branch protection rules.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassForcePushAllowances</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypassforcepushallowanceconnection\">BypassForcePushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to force push for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bypassPullRequestAllowances</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypasspullrequestallowanceconnection\">BypassPullRequestAllowanceConnection!</a></code>)</p></td>\n<td><p>A list of actors able to bypass PRs for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissesStaleReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Will new commits pushed to matching branches dismiss pull request review approvals.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAdminEnforced</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can admins overwrite branch protection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingRefs</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#refconnection\">RefConnection!</a></code>)</p></td>\n<td><p>Repository refs that are protected by this rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushAllowances</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pushallowanceconnection\">PushAllowanceConnection!</a></code>)</p></td>\n<td><p>A list push allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#requiredstatuscheckdescription\">[RequiredStatusCheckDescription!]</a></code>)</p></td>\n<td><p>List of required status checks that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresApprovingReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCommitSignatures</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are status checks required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresStrictStatusChecks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are branches required to be up to date before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsPushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is pushing to matching branches restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictsReviewDismissals</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is dismissal of pull request reviews restricted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDismissalAllowances</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewdismissalallowanceconnection\">ReviewDismissalAllowanceConnection!</a></code>)</p></td>\n<td><p>A list review dismissal allowances for this branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflict\">\n      <a href=\"#branchprotectionruleconflict\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflict</h2>\n    <p>A conflict between two branch protection rules.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conflictingBranchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the conflicting branch protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the branch ref that has conflicting rules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictconnection\">\n      <a href=\"#branchprotectionruleconflictconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictConnection</h2>\n    <p>The connection type for BranchProtectionRuleConflict.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconflictedge\">[BranchProtectionRuleConflictEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconflict\">[BranchProtectionRuleConflict]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconflictedge\">\n      <a href=\"#branchprotectionruleconflictedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConflictEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconflict\">BranchProtectionRuleConflict</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleconnection\">\n      <a href=\"#branchprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleConnection</h2>\n    <p>The connection type for BranchProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleedge\">[BranchProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">[BranchProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"branchprotectionruleedge\">\n      <a href=\"#branchprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BranchProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowance\">\n      <a href=\"#bypassforcepushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowance</h2>\n    <p>A team or user who has the ability to bypass a force push requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceconnection\">\n      <a href=\"#bypassforcepushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceConnection</h2>\n    <p>The connection type for BypassForcePushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypassforcepushallowanceedge\">[BypassForcePushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypassforcepushallowance\">[BypassForcePushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypassforcepushallowanceedge\">\n      <a href=\"#bypassforcepushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassForcePushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypassforcepushallowance\">BypassForcePushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowance\">\n      <a href=\"#bypasspullrequestallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowance</h2>\n    <p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#branchactorallowanceactor\">BranchActorAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceconnection\">\n      <a href=\"#bypasspullrequestallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceConnection</h2>\n    <p>The connection type for BypassPullRequestAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypasspullrequestallowanceedge\">[BypassPullRequestAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypasspullrequestallowance\">[BypassPullRequestAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"bypasspullrequestallowanceedge\">\n      <a href=\"#bypasspullrequestallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>BypassPullRequestAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#bypasspullrequestallowance\">BypassPullRequestAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cvss\">\n      <a href=\"#cvss\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CVSS</h2>\n    <p>The Common Vulnerability Scoring System.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>score</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The CVSS score associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vectorString</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The CVSS vector string associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cwe\">\n      <a href=\"#cwe\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWE</h2>\n    <p>A common weakness enumeration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cweId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The id of the CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A detailed description of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this CWE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweconnection\">\n      <a href=\"#cweconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEConnection</h2>\n    <p>The connection type for CWE.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cweedge\">[CWEEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cwe\">[CWE]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"cweedge\">\n      <a href=\"#cweedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CWEEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cwe\">CWE</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotation\">\n      <a href=\"#checkannotation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotation</h2>\n    <p>A single check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotationLevel</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkannotationlevel\">CheckAnnotationLevel</a></code>)</p></td>\n<td><p>The annotation&apos;s severity level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blobUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path to the file that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationspan\">CheckAnnotationSpan!</a></code>)</p></td>\n<td><p>The position of this annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The annotation&apos;s message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path that this annotation was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rawDetails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Additional information about the annotation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The annotation&apos;s title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationconnection\">\n      <a href=\"#checkannotationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationConnection</h2>\n    <p>The connection type for CheckAnnotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationedge\">[CheckAnnotationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotation\">[CheckAnnotation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationedge\">\n      <a href=\"#checkannotationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotation\">CheckAnnotation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationposition\">\n      <a href=\"#checkannotationposition\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationPosition</h2>\n    <p>A character position in a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Column number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Line number (1 indexed).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkannotationspan\">\n      <a href=\"#checkannotationspan\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckAnnotationSpan</h2>\n    <p>An inclusive pair of positions for a check annotation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>end</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>End position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>start</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationposition\">CheckAnnotationPosition!</a></code>)</p></td>\n<td><p>Start position (inclusive).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrun\">\n      <a href=\"#checkrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRun</h2>\n    <p>A check run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>annotations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkannotationconnection\">CheckAnnotationConnection</a></code>)</p></td>\n<td><p>The check run&apos;s annotations.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite that this run is a part of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The corresponding deployment for this job, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>detailsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL from which to find full details of the check run on the integrator&apos;s site.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check run on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the check for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>Information about a pending deployment, if any, in this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the check run summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check run was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>steps</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkstepconnection\">CheckStepConnection</a></code>)</p></td>\n<td><p>The check run&apos;s steps.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Step number.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s summary.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run&apos;s text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A string representing the check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunconnection\">\n      <a href=\"#checkrunconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunConnection</h2>\n    <p>The connection type for CheckRun.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrunedge\">[CheckRunEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrun\">[CheckRun]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkrunedge\">\n      <a href=\"#checkrunedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckRunEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrun\">CheckRun</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstep\">\n      <a href=\"#checkstep\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStep</h2>\n    <p>A single check step.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>completedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was completed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A reference for the check step on the integrator&apos;s system.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The step&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The index of the step in the list of steps of the parent check run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>secondsToCompletion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of seconds to completion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the check step was started.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The current status of the check step.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepconnection\">\n      <a href=\"#checkstepconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepConnection</h2>\n    <p>The connection type for CheckStep.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkstepedge\">[CheckStepEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkstep\">[CheckStep]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checkstepedge\">\n      <a href=\"#checkstepedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckStepEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkstep\">CheckStep</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuite\">\n      <a href=\"#checksuite\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuite</h2>\n    <p>A check suite.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The GitHub App which created this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The name of the branch for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkRuns</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checkrunconnection\">CheckRunConnection</a></code>)</p></td>\n<td><p>The check runs associated with a check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checkrunfilter\">CheckRunFilter</a></code>)</p>\n<p>Filters the check runs by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conclusion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkconclusionstate\">CheckConclusionState</a></code>)</p></td>\n<td><p>The conclusion of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who triggered the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>matchingPullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>A list of open pull requests matching the check suite.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>push</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#push\">Push</a></code>)</p></td>\n<td><p>The push that triggered this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#checkstatusstate\">CheckStatusState!</a></code>)</p></td>\n<td><p>The status of this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflowRun</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#workflowrun\">WorkflowRun</a></code>)</p></td>\n<td><p>The workflow run associated with this check suite.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteconnection\">\n      <a href=\"#checksuiteconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteConnection</h2>\n    <p>The connection type for CheckSuite.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuiteedge\">[CheckSuiteEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">[CheckSuite]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"checksuiteedge\">\n      <a href=\"#checksuiteedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CheckSuiteEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">CheckSuite</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"closedevent\">\n      <a href=\"#closedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ClosedEvent</h2>\n    <p>Represents a<code>closed</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#closer\">Closer</a></code>)</p></td>\n<td><p>Object which triggered the creation of this event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this closed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"codeofconduct\">\n      <a href=\"#codeofconduct\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CodeOfConduct</h2>\n    <p>The Code of Conduct for a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The key for the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The formal name of the Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this Code of Conduct.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commentdeletedevent\">\n      <a href=\"#commentdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommentDeletedEvent</h2>\n    <p>Represents a<code>comment_deleted</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedCommentAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who authored the deleted comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commit\">\n      <a href=\"#commit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Commit</h2>\n    <p>Represents a Git commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection</a></code>)</p></td>\n<td><p>The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#pullrequestorder\">PullRequestOrder</a></code>)</p>\n<p>Ordering options for pull requests.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Authorship details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredByCommitter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the committer and the author match.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authoredDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was authored.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactorconnection\">GitActorConnection!</a></code>)</p></td>\n<td><p>The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blame</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#blame\">Blame!</a></code>)</p></td>\n<td><p>Fetches <code>git blame</code> information.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The file whose Git blame information you want.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checkSuites</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuiteconnection\">CheckSuiteConnection</a></code>)</p></td>\n<td><p>The check suites associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#checksuitefilter\">CheckSuiteFilter</a></code>)</p>\n<p>Filters the check suites by this type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>Comments made on the commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The datetime when this commit was committed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committedViaWeb</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if committed via GitHub web UI.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>committer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Committer details of the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentconnection\">DeploymentConnection</a></code>)</p></td>\n<td><p>The deployments associated with a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>file</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#treeentry\">TreeEntry</a></code>)</p></td>\n<td><p>The tree entry representing the file located at the given path.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The path for the file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>history</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commithistoryconnection\">CommitHistoryConnection!</a></code>)</p></td>\n<td><p>The linear commit history starting from (and including) this commit, in the same order as <code>git log</code>.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#commitauthor\">CommitAuthor</a></code>)</p>\n<p>If non-null, filters history to only show commits with matching authorship.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters history to only show commits touching files under this path.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying a beginning time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>until</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p>\n<p>Allows specifying an ending time or date for fetching commits.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBody</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageBodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git commit message headline.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>messageHeadlineHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The commit message headline rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization this commit was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parents</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitconnection\">CommitConnection!</a></code>)</p></td>\n<td><p>The parents of a commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The datetime when this commit was pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>)</p></td>\n<td><p>Commit signing information, if present.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#status\">Status</a></code>)</p></td>\n<td><p>Status information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statusCheckRollup</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscheckrollup\">StatusCheckRollup</a></code>)</p></td>\n<td><p>Check and Status rollup information for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tarballUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tree</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#tree\">Tree!</a></code>)</p></td>\n<td><p>Commit&apos;s root Tree.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>treeUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the tree of this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>zipballUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcomment\">\n      <a href=\"#commitcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitComment</h2>\n    <p>Represents a comment on a given Commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment, if the commit exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the file path associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the line position associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this commit comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentconnection\">\n      <a href=\"#commitcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentConnection</h2>\n    <p>The connection type for CommitComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentedge\">[CommitCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcomment\">[CommitComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentedge\">\n      <a href=\"#commitcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcomment\">CommitComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcommentthread\">\n      <a href=\"#commitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitCommentThread</h2>\n    <p>A thread of comments on a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitconnection\">\n      <a href=\"#commitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitcontributionsbyrepository\">\n      <a href=\"#commitcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitContributionsByRepository</h2>\n    <p>This aggregates commits made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdcommitcontributionconnection\">CreatedCommitContributionConnection!</a></code>)</p></td>\n<td><p>The commit contributions, each representing a day.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#commitcontributionorder\">CommitContributionOrder</a></code>)</p>\n<p>Ordering options for commit contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the commits were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the user&apos;s commits to the repository in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commitedge\">\n      <a href=\"#commitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"commithistoryconnection\">\n      <a href=\"#commithistoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CommitHistoryConnection</h2>\n    <p>The connection type for Commit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitedge\">[CommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">[Commit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"connectedevent\">\n      <a href=\"#connectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConnectedEvent</h2>\n    <p>Represents a<code>connected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was connected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendar\">\n      <a href=\"#contributioncalendar\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendar</h2>\n    <p>A calendar of contributions made on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>colors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHalloween</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the color set was chosen because it&apos;s currently Halloween.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>months</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributioncalendarmonth\">[ContributionCalendarMonth!]!</a></code>)</p></td>\n<td><p>A list of the months of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The count of total contributions in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weeks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributioncalendarweek\">[ContributionCalendarWeek!]!</a></code>)</p></td>\n<td><p>A list of the weeks of contributions in this calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarday\">\n      <a href=\"#contributioncalendarday\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarDay</h2>\n    <p>Represents a single day of contributions on GitHub by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The hex color code that represents how many contributions were made on this day compared to others in the calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many contributions were made by the user on this day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionLevel</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#contributionlevel\">ContributionLevel!</a></code>)</p></td>\n<td><p>Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The day this square represents.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>weekday</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number representing which day of the week this square represents, e.g., 1 is Monday.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarmonth\">\n      <a href=\"#contributioncalendarmonth\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarMonth</h2>\n    <p>A month of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the first day of this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalWeeks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many weeks started in this month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>year</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The year the month occurred in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributioncalendarweek\">\n      <a href=\"#contributioncalendarweek\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionCalendarWeek</h2>\n    <p>A week of contributions in a user&apos;s contribution graph.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributionDays</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributioncalendarday\">[ContributionCalendarDay!]!</a></code>)</p></td>\n<td><p>The days of contributions in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstDay</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date!</a></code>)</p></td>\n<td><p>The date of the earliest square in this week.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"contributionscollection\">\n      <a href=\"#contributionscollection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ContributionsCollection</h2>\n    <p>A contributions collection aggregates contributions such as opened issues and commits created by a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitContributionsByRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcontributionsbyrepository\">[CommitContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Commit contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionCalendar</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributioncalendar\">ContributionCalendar!</a></code>)</p></td>\n<td><p>A calendar of this user&apos;s contributions on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionYears</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">[Int!]!</a></code>)</p></td>\n<td><p>The years the user has been making contributions with the most recent year first.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>doesEndInCurrentMonth</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this collection&apos;s time span ends in the current month.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>earliestRestrictedContributionDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The ending date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstIssueContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#createdissueorrestrictedcontribution\">CreatedIssueOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection&apos;s time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPullRequestContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#createdpullrequestorrestrictedcontribution\">CreatedPullRequestOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection&apos;s time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstRepositoryContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#createdrepositoryorrestrictedcontribution\">CreatedRepositoryOrRestrictedContribution</a></code>)</p></td>\n<td><p>The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection&apos;s time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasActivityInThePast</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Does the user have any more activity in the timeline that occurred prior to the collection&apos;s time range?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if there are any contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnyRestrictedContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSingleDay</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the collector&apos;s time span is all within the same day.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>A list of issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueContributionsByRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecontributionsbyrepository\">[IssueContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Issue contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>joinedGitHubContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#joinedgithubcontribution\">JoinedGitHubContribution</a></code>)</p></td>\n<td><p>When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection&apos;s time range and ignoreTimeRange is false.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRestrictedContributionDate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#date\">Date</a></code>)</p></td>\n<td><p>The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithActivity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>When this collection&apos;s time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mostRecentCollectionWithoutActivity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection</a></code>)</p></td>\n<td><p>Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularIssueContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The issue the user opened on GitHub that received the most comments in the specified\ntime frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>popularPullRequestContribution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestContributionsByRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcontributionsbyrepository\">[PullRequestContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReviewContributionsByRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcontributionsbyrepository\">[PullRequestReviewContributionsByRepository!]!</a></code>)</p></td>\n<td><p>Pull request review contributions made by the user, grouped by repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>maxRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many repositories should be included.</p>\n<p>The default value is <code>25</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdrepositorycontributionconnection\">CreatedRepositoryContributionConnection!</a></code>)</p></td>\n<td><p>A list of repositories owned by the user that the user created in this time range.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from the result.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restrictedContributionsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The beginning date and time of this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCommitContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made by the user in this time span.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalIssueContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many issues the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull requests the user opened.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalPullRequestReviewContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many pull request reviews the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedCommits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user committed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedIssues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened issues in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first issue ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented issue be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequestReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user left pull request reviews in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoriesWithContributedPullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many different repositories the user opened pull requests in.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first pull request ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludePopular</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s most commented pull request be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalRepositoryContributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many repositories the user created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>excludeFirst</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Should the user&apos;s first repository ever be excluded from this count.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made the contributions in this collection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"converttodraftevent\">\n      <a href=\"#converttodraftevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertToDraftEvent</h2>\n    <p>Represents a<code>convert_to_draft</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this convert to draft event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertednotetoissueevent\">\n      <a href=\"#convertednotetoissueevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedNoteToIssueEvent</h2>\n    <p>Represents a<code>converted_note_to_issue</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"convertedtodiscussionevent\">\n      <a href=\"#convertedtodiscussionevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ConvertedToDiscussionEvent</h2>\n    <p>Represents a<code>converted_to_discussion</code>event on a given issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion that the issue was converted into.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontribution\">\n      <a href=\"#createdcommitcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContribution</h2>\n    <p>Represents the contribution a user made by committing to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commitCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>How many commits were made on this day to this repository by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the user made a commit in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionconnection\">\n      <a href=\"#createdcommitcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionConnection</h2>\n    <p>The connection type for CreatedCommitContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdcommitcontributionedge\">[CreatedCommitContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdcommitcontribution\">[CreatedCommitContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of commits across days and repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdcommitcontributionedge\">\n      <a href=\"#createdcommitcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedCommitContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdcommitcontribution\">CreatedCommitContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontribution\">\n      <a href=\"#createdissuecontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening an issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionconnection\">\n      <a href=\"#createdissuecontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionConnection</h2>\n    <p>The connection type for CreatedIssueContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontributionedge\">[CreatedIssueContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontribution\">[CreatedIssueContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdissuecontributionedge\">\n      <a href=\"#createdissuecontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedIssueContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontribution\">CreatedIssueContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontribution\">\n      <a href=\"#createdpullrequestcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContribution</h2>\n    <p>Represents the contribution a user made on GitHub by opening a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request that was opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionconnection\">\n      <a href=\"#createdpullrequestcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontributionedge\">[CreatedPullRequestContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontribution\">[CreatedPullRequestContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestcontributionedge\">\n      <a href=\"#createdpullrequestcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontribution\">CreatedPullRequestContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontribution\">\n      <a href=\"#createdpullrequestreviewcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContribution</h2>\n    <p>Represents the contribution a user made by leaving a review on a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview!</a></code>)</p></td>\n<td><p>The review the user left on the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository containing the pull request that the user reviewed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionconnection\">\n      <a href=\"#createdpullrequestreviewcontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionConnection</h2>\n    <p>The connection type for CreatedPullRequestReviewContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontributionedge\">[CreatedPullRequestReviewContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontribution\">[CreatedPullRequestReviewContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdpullrequestreviewcontributionedge\">\n      <a href=\"#createdpullrequestreviewcontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedPullRequestReviewContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontribution\">CreatedPullRequestReviewContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontribution\">\n      <a href=\"#createdrepositorycontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContribution</h2>\n    <p>Represents the contribution a user made on GitHub by creating a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionconnection\">\n      <a href=\"#createdrepositorycontributionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionConnection</h2>\n    <p>The connection type for CreatedRepositoryContribution.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdrepositorycontributionedge\">[CreatedRepositoryContributionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdrepositorycontribution\">[CreatedRepositoryContribution]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"createdrepositorycontributionedge\">\n      <a href=\"#createdrepositorycontributionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CreatedRepositoryContributionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdrepositorycontribution\">CreatedRepositoryContribution</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"crossreferencedevent\">\n      <a href=\"#crossreferencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>CrossReferencedEvent</h2>\n    <p>Represents a mention made by one issue or pull request to another.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>referencedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request that made the reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request to which the reference was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>willCloseTarget</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the target will be closed when the source is merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"demilestonedevent\">\n      <a href=\"#demilestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DemilestonedEvent</h2>\n    <p>Represents a<code>demilestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>demilestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykey\">\n      <a href=\"#deploykey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKey</h2>\n    <p>A repository deploy key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>readOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key is read only.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The deploy key title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>verified</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the deploy key has been verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyconnection\">\n      <a href=\"#deploykeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyConnection</h2>\n    <p>The connection type for DeployKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploykeyedge\">[DeployKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploykey\">[DeployKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploykeyedge\">\n      <a href=\"#deploykeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploykey\">DeployKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployedevent\">\n      <a href=\"#deployedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeployedEvent</h2>\n    <p>Represents a<code>deployed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>The deployment associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The ref associated with the<code>deployed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deployment\">\n      <a href=\"#deployment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Deployment</h2>\n    <p>Represents triggered deployment instance.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit sha of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the oid of the deployment commit, even if the commit has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestEnvironment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The latest environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestStatus</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The latest status of this deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalEnvironment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The original environment to which this deployment was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Extra information that a deployment system might need.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref of the deployment, if the deployment was created by ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentstate\">DeploymentState</a></code>)</p></td>\n<td><p>The current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>statuses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatusconnection\">DeploymentStatusConnection</a></code>)</p></td>\n<td><p>A list of statuses associated with the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>task</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The deployment task.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentconnection\">\n      <a href=\"#deploymentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentConnection</h2>\n    <p>The connection type for Deployment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentedge\">[DeploymentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">[Deployment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentedge\">\n      <a href=\"#deploymentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">Deployment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentenvironmentchangedevent\">\n      <a href=\"#deploymentenvironmentchangedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentEnvironmentChangedEvent</h2>\n    <p>Represents a<code>deployment_environment_changed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentStatus</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus!</a></code>)</p></td>\n<td><p>The deployment status that updated the deployment environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionrule\">\n      <a href=\"#deploymentprotectionrule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRule</h2>\n    <p>A protection rule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeout</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The timeout in minutes for this protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentprotectionruletype\">DeploymentProtectionRuleType!</a></code>)</p></td>\n<td><p>The type of protection rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleconnection\">\n      <a href=\"#deploymentprotectionruleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleConnection</h2>\n    <p>The connection type for DeploymentProtectionRule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentprotectionruleedge\">[DeploymentProtectionRuleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentprotectionrule\">[DeploymentProtectionRule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentprotectionruleedge\">\n      <a href=\"#deploymentprotectionruleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentProtectionRuleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentprotectionrule\">DeploymentProtectionRule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequest\">\n      <a href=\"#deploymentrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequest</h2>\n    <p>A request to deploy a workflow run to an environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>currentUserCanApprove</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can approve the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">Environment!</a></code>)</p></td>\n<td><p>The target environment of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreviewerconnection\">DeploymentReviewerConnection!</a></code>)</p></td>\n<td><p>The teams or users that can review the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>waitTimerStartedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The wait timer in minutes configured in the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestconnection\">\n      <a href=\"#deploymentrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestConnection</h2>\n    <p>The connection type for DeploymentRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequestedge\">[DeploymentRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequest\">[DeploymentRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrequestedge\">\n      <a href=\"#deploymentrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequest\">DeploymentRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreview\">\n      <a href=\"#deploymentreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReview</h2>\n    <p>A deployment review.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment the user left.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>The environments approved or rejected.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentreviewstate\">DeploymentReviewState!</a></code>)</p></td>\n<td><p>The decision of the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that reviewed the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewconnection\">\n      <a href=\"#deploymentreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewConnection</h2>\n    <p>The connection type for DeploymentReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreviewedge\">[DeploymentReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreview\">[DeploymentReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewedge\">\n      <a href=\"#deploymentreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreview\">DeploymentReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentreviewerconnection\">\n      <a href=\"#deploymentreviewerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerConnection</h2>\n    <p>The connection type for DeploymentReviewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrevieweredge\">[DeploymentReviewerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#deploymentreviewer\">[DeploymentReviewer]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentrevieweredge\">\n      <a href=\"#deploymentrevieweredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentReviewerEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#deploymentreviewer\">DeploymentReviewer</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatus\">\n      <a href=\"#deploymentstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatus</h2>\n    <p>Describes the status of a given deployment attempt.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>Identifies the actor who triggered the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deployment\">Deployment!</a></code>)</p></td>\n<td><p>Identifies the deployment associated with status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the environment of the deployment at the time of this deployment status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>environment</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#deployments-preview\">Deployments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environmentUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the environment URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>logUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>Identifies the log URL of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#deploymentstatusstate\">DeploymentStatusState!</a></code>)</p></td>\n<td><p>Identifies the current state of the deployment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusconnection\">\n      <a href=\"#deploymentstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusConnection</h2>\n    <p>The connection type for DeploymentStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatusedge\">[DeploymentStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatus\">[DeploymentStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"deploymentstatusedge\">\n      <a href=\"#deploymentstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DeploymentStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentstatus\">DeploymentStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"disconnectedevent\">\n      <a href=\"#disconnectedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DisconnectedEvent</h2>\n    <p>Represents a<code>disconnected</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request from which the issue was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Issue or pull request which was disconnected.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussion\">\n      <a href=\"#discussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Discussion</h2>\n    <p>A discussion in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The comment chosen as this discussion&apos;s answer, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when a user chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>answerChosenBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user who chose this discussion&apos;s answer, if answered.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The main text of the discussion post.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>category</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategory\">DiscussionCategory!</a></code>)</p></td>\n<td><p>The category for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The replies to the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number identifying this discussion within the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategory\">\n      <a href=\"#discussioncategory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategory</h2>\n    <p>A category for discussions in a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A description of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An emoji representing this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>This category&apos;s emoji rendered as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswerable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this category.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryconnection\">\n      <a href=\"#discussioncategoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryConnection</h2>\n    <p>The connection type for DiscussionCategory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategoryedge\">[DiscussionCategoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategory\">[DiscussionCategory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncategoryedge\">\n      <a href=\"#discussioncategoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCategoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategory\">DiscussionCategory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncomment\">\n      <a href=\"#discussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionComment</h2>\n    <p>A comment on a discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#votable\">Votable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The time when this replied-to comment was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The discussion this comment was created in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isAnswer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Has this comment been chosen as the answer of its discussion?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replies</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>The threaded replies to this comment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The discussion comment this comment is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>upvoteCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Number of upvotes that this subject has received.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for this discussion comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMarkAsAnswer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user mark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnmarkAsAnswer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current user unmark this comment as an answer?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpvote</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user can add or remove an upvote on this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasUpvoted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current user has already upvoted this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentconnection\">\n      <a href=\"#discussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentConnection</h2>\n    <p>The connection type for DiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentedge\">[DiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">[DiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussioncommentedge\">\n      <a href=\"#discussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncomment\">DiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionconnection\">\n      <a href=\"#discussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionConnection</h2>\n    <p>The connection type for Discussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussionedge\">[DiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">[Discussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"discussionedge\">\n      <a href=\"#discussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>DiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprise\">\n      <a href=\"#enterprise\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Enterprise</h2>\n    <p>An account to manage multiple organizations with consolidated policy and billing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisebillinginfo\">EnterpriseBillingInfo</a></code>)</p></td>\n<td><p>Enterprise billing information&#xA0;visible to enterprise billing managers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the enterprise as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The location of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisememberconnection\">EnterpriseMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>deployment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseuserdeployment\">EnterpriseUserDeployment</a></code>)</p>\n<p>Only return members within the selected GitHub Enterprise deployment.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for members returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationLogins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Only return members within the organizations with these logins.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization or server.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations that belong to this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>viewerOrganizationRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The viewer&apos;s role in an organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ownerInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseownerinfo\">EnterpriseOwnerInfo</a></code>)</p></td>\n<td><p>Enterprise information only visible to enterprise owners.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The URL-friendly identifier for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseuseraccountconnection\">EnterpriseUserAccountConnection!</a></code>)</p></td>\n<td><p>A list of user accounts on this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAdmin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the current viewer an admin of this enterprise?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL of the enterprise website.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorconnection\">\n      <a href=\"#enterpriseadministratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratoredge\">[EnterpriseAdministratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratoredge\">\n      <a href=\"#enterpriseadministratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorEdge</h2>\n    <p>A User who is an administrator of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The role of the administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitation\">\n      <a href=\"#enterpriseadministratorinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitation</h2>\n    <p>An invitation for a user to become an owner or billing manager of an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email of the person who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise the invitation is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole!</a></code>)</p></td>\n<td><p>The invitee&apos;s pending role in the enterprise (owner or billing_manager).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationconnection\">\n      <a href=\"#enterpriseadministratorinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationConnection</h2>\n    <p>The connection type for EnterpriseAdministratorInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorinvitationedge\">[EnterpriseAdministratorInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorinvitation\">[EnterpriseAdministratorInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseadministratorinvitationedge\">\n      <a href=\"#enterpriseadministratorinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseAdministratorInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorinvitation\">EnterpriseAdministratorInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisebillinginfo\">\n      <a href=\"#enterprisebillinginfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseBillingInfo</h2>\n    <p>Enterprise billing information visible to enterprise billing managers and owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allLicensableUsersCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of licenseable users/emails across the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assetPacks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of data packs used by all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>availableSeats</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available seats across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>availableSeats</code> is deprecated.</p><p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthQuota</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The bandwidth usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bandwidthUsagePercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The bandwidth usage as a percentage of the bandwidth quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>seats</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total seats across all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>seats</code> is deprecated.</p><p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageQuota</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage quota in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The storage usage in GB for all organizations owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>storageUsagePercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The storage usage as a percentage of the storage quota.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalAvailableLicenses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of available licenses across all owned organizations based on the unique number of billable users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalLicenses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of licenses allocated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseidentityprovider\">\n      <a href=\"#enterpriseidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseIdentityProvider</h2>\n    <p>An identity provider configured to provision identities for an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#samldigestalgorithm\">SamlDigestAlgorithm</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise</a></code>)</p></td>\n<td><p>The enterprise this identity provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>ExternalIdentities provisioned by this identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the identity provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>recoveryCodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#samlsignaturealgorithm\">SamlSignatureAlgorithm</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the identity provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the identity provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberconnection\">\n      <a href=\"#enterprisememberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberConnection</h2>\n    <p>The connection type for EnterpriseMember.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisememberedge\">[EnterpriseMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#enterprisemember\">[EnterpriseMember]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisememberedge\">\n      <a href=\"#enterprisememberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseMemberEdge</h2>\n    <p>A User who is a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All members consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#enterprisemember\">EnterpriseMember</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipconnection\">\n      <a href=\"#enterpriseorganizationmembershipconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipConnection</h2>\n    <p>The connection type for Organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseorganizationmembershipedge\">[EnterpriseOrganizationMembershipEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseorganizationmembershipedge\">\n      <a href=\"#enterpriseorganizationmembershipedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOrganizationMembershipEdge</h2>\n    <p>An enterprise organization that a user is a member of.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole!</a></code>)</p></td>\n<td><p>The role of the user in the enterprise membership.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratorconnection\">\n      <a href=\"#enterpriseoutsidecollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseoutsidecollaboratoredge\">[EnterpriseOutsideCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseoutsidecollaboratoredge\">\n      <a href=\"#enterpriseoutsidecollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOutsideCollaboratorEdge</h2>\n    <p>A User who is an outside collaborator of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the outside collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All outside collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseownerinfo\">\n      <a href=\"#enterpriseownerinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseOwnerInfo</h2>\n    <p>Enterprise information only visible to enterprise owners.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>admins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorconnection\">EnterpriseAdministratorConnection!</a></code>)</p></td>\n<td><p>A list of all of the administrators for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for administrators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users in the enterprise who currently have two-factor authentication disabled.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>affiliatedUsersWithTwoFactorDisabledExist</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowPrivateRepositoryForkingSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided private repository forking setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue\">EnterpriseDefaultRepositoryPermissionSettingValue!</a></code>)</p></td>\n<td><p>The setting value for base repository permissions for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultRepositoryPermissionSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided base repository permission.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p>\n<p>The permission to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingDefaultRepositoryPermission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the base repository permission is currently being updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUpdatingTwoFactorRequirement</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the two-factor authentication requirement is currently being enforced.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanChangeRepositoryVisibilitySettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided can change repository visibility setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateInternalRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create internal repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePrivateRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create private repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreatePublicRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create public repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberscancreaterepositoriessettingvalue\">EnterpriseMembersCanCreateRepositoriesSettingValue</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can create repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanCreateRepositoriesSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository creation setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationmemberscancreaterepositoriessettingvalue\">OrganizationMembersCanCreateRepositoriesSettingValue!</a></code>)</p>\n<p>The setting to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete issues.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteIssuesSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete issues setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can delete or transfer repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanDeleteRepositoriesSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can delete repositories setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members of organizations in the enterprise can invite outside collaborators.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanInviteCollaboratorsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can invite collaborators setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanMakePurchasesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterprisememberscanmakepurchasessettingvalue\">EnterpriseMembersCanMakePurchasesSettingValue!</a></code>)</p></td>\n<td><p>Indicates whether members of this enterprise&apos;s organizations can purchase additional services for those organizations.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members with admin permissions for repositories can update protected branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanUpdateProtectedBranchesSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can update protected branches setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether members can view dependency insights.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanViewDependencyInsightsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided members can view dependency insights setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationProjectsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided organization projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outsideCollaborators</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseoutsidecollaboratorconnection\">EnterpriseOutsideCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of outside collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The login of one specific outside collaborator.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterprisememberorder\">EnterpriseMemberOrder</a></code>)</p>\n<p>Ordering options for outside collaborators returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility</a></code>)</p>\n<p>Only return outside collaborators on repositories with this visibility.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingAdminInvitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseadministratorinvitationconnection\">EnterpriseAdministratorInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending administrator invitations for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterpriseadministratorinvitationorder\">EnterpriseAdministratorInvitationOrder</a></code>)</p>\n<p>Ordering options for pending enterprise administrator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseadministratorrole\">EnterpriseAdministratorRole</a></code>)</p>\n<p>The role to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaboratorInvitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryinvitationconnection\">RepositoryInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborator invitations across the repositories in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCollaborators</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisependingcollaboratorconnection\">EnterprisePendingCollaboratorConnection!</a></code>)</p></td>\n<td><p>A list of pending collaborators across the repositories in the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>pendingCollaborators</code> is deprecated.</p><p>Repository invitations can now be associated with an email, not only an invitee. Use the <code>pendingCollaboratorInvitations</code> field instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryinvitationorder\">RepositoryInvitationOrder</a></code>)</p>\n<p>Ordering options for pending repository collaborator invitations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMemberInvitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisependingmemberinvitationconnection\">EnterprisePendingMemberInvitationConnection!</a></code>)</p></td>\n<td><p>A list of pending member invitations for organizations in the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether repository projects are enabled in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryProjectsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided repository projects setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseidentityprovider\">EnterpriseIdentityProvider</a></code>)</p></td>\n<td><p>The SAML Identity Provider for the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProviderSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the SAML single sign-on setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#identityproviderconfigurationstate\">IdentityProviderConfigurationState!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenableddisabledsettingvalue\">EnterpriseEnabledDisabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether team discussions are enabled for organizations in this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamDiscussionsSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the provided team discussions setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseenabledsettingvalue\">EnterpriseEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the enterprise requires two-factor authentication for its organizations and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twoFactorRequiredSettingOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations configured with the two-factor authentication setting value.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations with this setting.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p>\n<p>The setting value to find organizations for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratorconnection\">\n      <a href=\"#enterprisependingcollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisependingcollaboratoredge\">[EnterprisePendingCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingcollaboratoredge\">\n      <a href=\"#enterprisependingcollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingCollaboratorEdge</h2>\n    <p>A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invited collaborator does not have a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending collaborators consume a license Removal on 2021-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfoconnection\">EnterpriseRepositoryInfoConnection!</a></code>)</p></td>\n<td><p>The enterprise organization repositories this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationconnection\">\n      <a href=\"#enterprisependingmemberinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprisependingmemberinvitationedge\">[EnterprisePendingMemberInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalUniqueUserCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of unique users in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterprisependingmemberinvitationedge\">\n      <a href=\"#enterprisependingmemberinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterprisePendingMemberInvitationEdge</h2>\n    <p>An invitation to be a member in an enterprise organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUnlicensed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the invitation has a license for the enterprise.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>isUnlicensed</code> is deprecated.</p><p>All pending members consume a license Removal on 2020-07-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfo\">\n      <a href=\"#enterpriserepositoryinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfo</h2>\n    <p>A subset of repository information queryable from an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoconnection\">\n      <a href=\"#enterpriserepositoryinfoconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoConnection</h2>\n    <p>The connection type for EnterpriseRepositoryInfo.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfoedge\">[EnterpriseRepositoryInfoEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfo\">[EnterpriseRepositoryInfo]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriserepositoryinfoedge\">\n      <a href=\"#enterpriserepositoryinfoedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseRepositoryInfoEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriserepositoryinfo\">EnterpriseRepositoryInfo</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserverinstallation\">\n      <a href=\"#enterpriseserverinstallation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerInstallation</h2>\n    <p>An Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>customerName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The customer name to which the Enterprise Server installation belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hostName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The host name of the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isConnected</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccounts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountconnection\">EnterpriseServerUserAccountConnection!</a></code>)</p></td>\n<td><p>User accounts on this Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterpriseserveruseraccountorder\">EnterpriseServerUserAccountOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccountsUploads</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountsuploadconnection\">EnterpriseServerUserAccountsUploadConnection!</a></code>)</p></td>\n<td><p>User accounts uploads for the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterpriseserveruseraccountsuploadorder\">EnterpriseServerUserAccountsUploadOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user accounts uploads returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccount\">\n      <a href=\"#enterpriseserveruseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccount</h2>\n    <p>A user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountemailconnection\">EnterpriseServerUserAccountEmailConnection!</a></code>)</p></td>\n<td><p>User emails belonging to this user account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#enterpriseserveruseraccountemailorder\">EnterpriseServerUserAccountEmailOrder</a></code>)</p>\n<p>Ordering options for Enterprise Server user account emails returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation on which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the user account is a site administrator on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The login of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>profileName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The profile name of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteCreatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The date and time when the user account was created on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remoteUserId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The ID of the user account on the Enterprise Server installation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountconnection\">\n      <a href=\"#enterpriseserveruseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountedge\">[EnterpriseServerUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccount\">[EnterpriseServerUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountedge\">\n      <a href=\"#enterpriseserveruseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemail\">\n      <a href=\"#enterpriseserveruseraccountemail\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmail</h2>\n    <p>An email belonging to a user account on an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrimary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this is the primary email of the associated user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userAccount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccount\">EnterpriseServerUserAccount!</a></code>)</p></td>\n<td><p>The user account to which the email belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailconnection\">\n      <a href=\"#enterpriseserveruseraccountemailconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountEmail.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountemailedge\">[EnterpriseServerUserAccountEmailEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountemail\">[EnterpriseServerUserAccountEmail]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountemailedge\">\n      <a href=\"#enterpriseserveruseraccountemailedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountEmailEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountemail\">EnterpriseServerUserAccountEmail</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsupload\">\n      <a href=\"#enterpriseserveruseraccountsupload\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUpload</h2>\n    <p>A user accounts upload from an Enterprise Server installation.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise to which this upload belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseServerInstallation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserverinstallation\">EnterpriseServerInstallation!</a></code>)</p></td>\n<td><p>The Enterprise Server installation for which this upload was generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the file uploaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>syncState</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseserveruseraccountsuploadsyncstate\">EnterpriseServerUserAccountsUploadSyncState!</a></code>)</p></td>\n<td><p>The synchronization state of the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadconnection\">\n      <a href=\"#enterpriseserveruseraccountsuploadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadConnection</h2>\n    <p>The connection type for EnterpriseServerUserAccountsUpload.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountsuploadedge\">[EnterpriseServerUserAccountsUploadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountsupload\">[EnterpriseServerUserAccountsUpload]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseserveruseraccountsuploadedge\">\n      <a href=\"#enterpriseserveruseraccountsuploadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseServerUserAccountsUploadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseserveruseraccountsupload\">EnterpriseServerUserAccountsUpload</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccount\">\n      <a href=\"#enterpriseuseraccount\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccount</h2>\n    <p>An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the enterprise user account&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterprise</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterprise\">Enterprise!</a></code>)</p></td>\n<td><p>The enterprise in which this user account exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An identifier for the enterprise user account, a login or email address.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the enterprise user account.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseorganizationmembershipconnection\">EnterpriseOrganizationMembershipConnection!</a></code>)</p></td>\n<td><p>A list of enterprise organizations this user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#organizationorder\">OrganizationOrder</a></code>)</p>\n<p>Ordering options for organizations returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#enterpriseuseraccountmembershiprole\">EnterpriseUserAccountMembershipRole</a></code>)</p>\n<p>The role of the user in the enterprise organization.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user within the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountconnection\">\n      <a href=\"#enterpriseuseraccountconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountConnection</h2>\n    <p>The connection type for EnterpriseUserAccount.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseuseraccountedge\">[EnterpriseUserAccountEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseuseraccount\">[EnterpriseUserAccount]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"enterpriseuseraccountedge\">\n      <a href=\"#enterpriseuseraccountedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnterpriseUserAccountEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#enterpriseuseraccount\">EnterpriseUserAccount</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environment\">\n      <a href=\"#environment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Environment</h2>\n    <p>An environment.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the environment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>protectionRules</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentprotectionruleconnection\">DeploymentProtectionRuleConnection!</a></code>)</p></td>\n<td><p>The protection rules defined for this environment.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentconnection\">\n      <a href=\"#environmentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentConnection</h2>\n    <p>The connection type for Environment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environmentedge\">[EnvironmentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">[Environment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"environmentedge\">\n      <a href=\"#environmentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>EnvironmentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentity\">\n      <a href=\"#externalidentity\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentity</h2>\n    <p>An external identity provisioned by SAML SSO or SCIM.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>guid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GUID for this identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>Organization invitation for this SCIM-provisioned external identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentitysamlattributes\">ExternalIdentitySamlAttributes</a></code>)</p></td>\n<td><p>SAML Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>scimIdentity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentityscimattributes\">ExternalIdentityScimAttributes</a></code>)</p></td>\n<td><p>SCIM Identity attributes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityconnection\">\n      <a href=\"#externalidentityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityConnection</h2>\n    <p>The connection type for ExternalIdentity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentityedge\">[ExternalIdentityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentity\">[ExternalIdentity]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityedge\">\n      <a href=\"#externalidentityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentity\">ExternalIdentity</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentitysamlattributes\">\n      <a href=\"#externalidentitysamlattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentitySamlAttributes</h2>\n    <p>SAML attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The NameID of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SAML identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"externalidentityscimattributes\">\n      <a href=\"#externalidentityscimattributes\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ExternalIdentityScimAttributes</h2>\n    <p>SCIM attributes for the External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>emails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useremailmetadata\">[UserEmailMetadata!]</a></code>)</p></td>\n<td><p>The emails associated with the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>familyName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Family name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>givenName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Given name of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>groups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>The groups linked to this identity in IDP.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>username</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The userName of the SCIM identity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followerconnection\">\n      <a href=\"#followerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"followingconnection\">\n      <a href=\"#followingconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>FollowingConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"generichovercardcontext\">\n      <a href=\"#generichovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GenericHovercardContext</h2>\n    <p>A generic hovercard context with a message and icon.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gist\">\n      <a href=\"#gist\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Gist</h2>\n    <p>A Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistfile\">[GistFile]</a></code>)</p></td>\n<td><p>The files in this gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The maximum number of files to return.</p>\n<p>The default value is <code>10</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The oid of the files to return.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of forks associated with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the gist is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPublic</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the gist is public or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The gist name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The gist owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the gist was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcomment\">\n      <a href=\"#gistcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistComment</h2>\n    <p>Represents a comment on an Gist.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the comment body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gist\">Gist!</a></code>)</p></td>\n<td><p>The associated gist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentconnection\">\n      <a href=\"#gistcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentConnection</h2>\n    <p>The connection type for GistComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcommentedge\">[GistCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcomment\">[GistComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistcommentedge\">\n      <a href=\"#gistcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcomment\">GistComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistconnection\">\n      <a href=\"#gistconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistConnection</h2>\n    <p>The connection type for Gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistedge\">[GistEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gist\">[Gist]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistedge\">\n      <a href=\"#gistedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gistfile\">\n      <a href=\"#gistfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GistFile</h2>\n    <p>A file in a gist.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>encodedName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file name encoded to remove characters that are invalid in URL paths.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>encoding</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file encoding.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file extension from the file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isImage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if this file is an image.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTruncated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the file&apos;s contents were truncated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>language</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The programming language this file is written in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The gist file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The gist file size in bytes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>UTF8 text data or null if the file is binary.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>truncate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Optionally truncate the returned file to this length.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactor\">\n      <a href=\"#gitactor\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActor</h2>\n    <p>Represents an actor in a Git commit (ie. an author or committer).</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the author&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>date</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gittimestamp\">GitTimestamp</a></code>)</p></td>\n<td><p>The timestamp of the Git action (authoring or committing).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name in the Git commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The GitHub user corresponding to the email field. Null if no such user exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactorconnection\">\n      <a href=\"#gitactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorConnection</h2>\n    <p>The connection type for GitActor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactoredge\">[GitActorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">[GitActor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gitactoredge\">\n      <a href=\"#gitactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitActorEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"githubmetadata\">\n      <a href=\"#githubmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GitHubMetadata</h2>\n    <p>Represents information about the GitHub instance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>gitHubServicesSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Returns a String that&apos;s a SHA of <code>github-services</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPasswordAuthenticationVerifiable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not users are verified.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"gpgsignature\">\n      <a href=\"#gpgsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>GpgSignature</h2>\n    <p>Represents a GPG signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>keyId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Hex-encoded ID of the key that signed this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefdeletedevent\">\n      <a href=\"#headrefdeletedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefDeletedEvent</h2>\n    <p>Represents a<code>head_ref_deleted</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>head_ref_deleted</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefforcepushedevent\">\n      <a href=\"#headrefforcepushedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefForcePushedEvent</h2>\n    <p>Represents a<code>head_ref_force_pushed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>afterCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the after commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>beforeCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the before commit SHA for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the fully qualified ref name for the<code>head_ref_force_pushed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"headrefrestoredevent\">\n      <a href=\"#headrefrestoredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>HeadRefRestoredEvent</h2>\n    <p>Represents a<code>head_ref_restored</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"hovercard\">\n      <a href=\"#hovercard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Hovercard</h2>\n    <p>Detail needed to display a hovercard for a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">[HovercardContext!]!</a></code>)</p></td>\n<td><p>Each of the contexts for this hovercard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentry\">\n      <a href=\"#ipallowlistentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntry</h2>\n    <p>An IP address or range of addresses that is allowed to access an owner&apos;s resources.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowListValue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A single IP address or range of IP addresses in CIDR notation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isActive</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the entry is currently active.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#ipallowlistowner\">IpAllowListOwner!</a></code>)</p></td>\n<td><p>The owner of the IP allow list entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryconnection\">\n      <a href=\"#ipallowlistentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryConnection</h2>\n    <p>The connection type for IpAllowListEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentryedge\">[IpAllowListEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentry\">[IpAllowListEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ipallowlistentryedge\">\n      <a href=\"#ipallowlistentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IpAllowListEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentry\">IpAllowListEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issue\">\n      <a href=\"#issue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Issue</h2>\n    <p>An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http path for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the body of the issue rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The http URL for this issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this issue read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the issue number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Issue conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">IssueState!</a></code>)</p></td>\n<td><p>Identifies the state of the issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetimelineconnection\">IssueTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetimelineitemsconnection\">IssueTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuetimelineitemsitemtype\">[IssueTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the issue title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecomment\">\n      <a href=\"#issuecomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueComment</h2>\n    <p>Represents a comment on an Issue.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns the pull request associated with the comment, if this comment was made on a\npull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentconnection\">\n      <a href=\"#issuecommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentConnection</h2>\n    <p>The connection type for IssueComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecommentedge\">[IssueCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecomment\">[IssueComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecommentedge\">\n      <a href=\"#issuecommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecomment\">IssueComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueconnection\">\n      <a href=\"#issueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueConnection</h2>\n    <p>The connection type for Issue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueedge\">[IssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">[Issue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuecontributionsbyrepository\">\n      <a href=\"#issuecontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueContributionsByRepository</h2>\n    <p>This aggregates issues opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdissuecontributionconnection\">CreatedIssueContributionConnection!</a></code>)</p></td>\n<td><p>The issue contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the issues were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issueedge\">\n      <a href=\"#issueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetemplate\">\n      <a href=\"#issuetemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTemplate</h2>\n    <p>A repository issue template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The template purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The template name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The suggested issue title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineconnection\">\n      <a href=\"#issuetimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineConnection</h2>\n    <p>The connection type for IssueTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetimelineitemedge\">[IssueTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issuetimelineitem\">[IssueTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemedge\">\n      <a href=\"#issuetimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issuetimelineitem\">IssueTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsconnection\">\n      <a href=\"#issuetimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsConnection</h2>\n    <p>The connection type for IssueTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetimelineitemsedge\">[IssueTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issuetimelineitems\">[IssueTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"issuetimelineitemsedge\">\n      <a href=\"#issuetimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>IssueTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issuetimelineitems\">IssueTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"joinedgithubcontribution\">\n      <a href=\"#joinedgithubcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>JoinedGitHubContribution</h2>\n    <p>Represents a user signing up for a GitHub account.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"label\">\n      <a href=\"#label\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Label</h2>\n    <p>A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label color.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief description of this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDefault</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether or not this is a default label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the label name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the label was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labelconnection\">\n      <a href=\"#labelconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelConnection</h2>\n    <p>The connection type for Label.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labeledge\">[LabelEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">[Label]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledge\">\n      <a href=\"#labeledge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabelEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"labeledevent\">\n      <a href=\"#labeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LabeledEvent</h2>\n    <p>Represents a<code>labeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>labeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"language\">\n      <a href=\"#language\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Language</h2>\n    <p>Represents a given language found in repositories.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>color</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The color defined for the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the current language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageconnection\">\n      <a href=\"#languageconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageConnection</h2>\n    <p>A list of languages associated with the parent.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#languageedge\">[LanguageEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#language\">[Language]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalSize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in bytes of files written in that language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"languageedge\">\n      <a href=\"#languageedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LanguageEdge</h2>\n    <p>Represents the language of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of bytes of code written in the language.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"license\">\n      <a href=\"#license\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>License</h2>\n    <p>A repository&apos;s open source license.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The full text of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>conditions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The conditions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A human-readable description of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>featured</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be featured.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hidden</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license should be displayed in license pickers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>implementation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Instructions on how to implement the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The lowercased SPDX ID of the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The limitations set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The license full name specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nickname</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Customary short name if applicable (e.g, GPLv3).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#licenserule\">[LicenseRule]!</a></code>)</p></td>\n<td><p>The permissions set by the license.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pseudoLicense</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the license is a pseudo-license placeholder (e.g., other, no-license).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>spdxId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Short identifier specified by <a href=\"https://spdx.org/licenses\">https://spdx.org/licenses</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>URL to the license on <a href=\"https://choosealicense.com\">https://choosealicense.com</a>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"licenserule\">\n      <a href=\"#licenserule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LicenseRule</h2>\n    <p>Describes a License&apos;s conditions, permissions, and limitations.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A description of the rule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The machine-readable rule key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The human-readable rule label.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"lockedevent\">\n      <a href=\"#lockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>LockedEvent</h2>\n    <p>Represents a<code>locked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked (optional).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mannequin\">\n      <a href=\"#mannequin\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Mannequin</h2>\n    <p>A placeholder user for attribution of imported data on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the GitHub App&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>claimant</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user that has claimed the data attributed to this mannequin.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The mannequin&apos;s email on the source instance.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTML path to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL to this resource.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"markedasduplicateevent\">\n      <a href=\"#markedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MarkedAsDuplicateEvent</h2>\n    <p>Represents a<code>marked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposclearauditentry\">\n      <a href=\"#memberscandeletereposclearauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposClearAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.clear event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposdisableauditentry\">\n      <a href=\"#memberscandeletereposdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposDisableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"memberscandeletereposenableauditentry\">\n      <a href=\"#memberscandeletereposenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MembersCanDeleteReposEnableAuditEntry</h2>\n    <p>Audit log entry for a members_can_delete_repos.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mentionedevent\">\n      <a href=\"#mentionedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MentionedEvent</h2>\n    <p>Represents a<code>mentioned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"mergedevent\">\n      <a href=\"#mergedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MergedEvent</h2>\n    <p>Represents a<code>merged</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the Ref associated with the <code>merge</code> event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this merged event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"migrationsource\">\n      <a href=\"#migrationsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MigrationSource</h2>\n    <p>An Octoshift migration source.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Octoshift migration source name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#migrationsourcetype\">MigrationSourceType!</a></code>)</p></td>\n<td><p>The Octoshift migration source type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestone\">\n      <a href=\"#milestone\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Milestone</h2>\n    <p>Represents a Milestone object on a given repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who created the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the description of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dueOn</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the due date of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the number of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progressPercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>Identifies the percentage complete for the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#milestonestate\">MilestoneState!</a></code>)</p></td>\n<td><p>Identifies the state of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this milestone.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneconnection\">\n      <a href=\"#milestoneconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneConnection</h2>\n    <p>The connection type for Milestone.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestoneedge\">[MilestoneEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">[Milestone]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestoneedge\">\n      <a href=\"#milestoneedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestoneEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"milestonedevent\">\n      <a href=\"#milestonedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MilestonedEvent</h2>\n    <p>Represents a<code>milestoned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestoneTitle</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the milestone title associated with the<code>milestoned</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#milestoneitem\">MilestoneItem!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"movedcolumnsinprojectevent\">\n      <a href=\"#movedcolumnsinprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>MovedColumnsInProjectEvent</h2>\n    <p>Represents a<code>moved_columns_in_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousProjectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved from.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>previousProjectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>Project card referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectCard</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name the issue or pull request was moved to.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"oauthapplicationcreateauditentry\">\n      <a href=\"#oauthapplicationcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OauthApplicationCreateAuditEntry</h2>\n    <p>Audit log entry for a oauth_application.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>applicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The application URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>callbackUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The callback URL of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rateLimit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The rate limit of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#oauthapplicationcreateauditentrystate\">OauthApplicationCreateAuditEntryState</a></code>)</p></td>\n<td><p>The state of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddbillingmanagerauditentry\">\n      <a href=\"#orgaddbillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.add_billing_manager.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address used to invite a billing manager for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgaddmemberauditentry\">\n      <a href=\"#orgaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgAddMemberAuditEntry</h2>\n    <p>Audit log entry for a org.add_member.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgaddmemberauditentrypermission\">OrgAddMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The permission level of the member added to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgblockuserauditentry\">\n      <a href=\"#orgblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgBlockUserAuditEntry</h2>\n    <p>Audit log entry for a org.block_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#orgconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a org.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgcreateauditentry\">\n      <a href=\"#orgcreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgCreateAuditEntry</h2>\n    <p>Audit log entry for a org.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>billingPlan</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgcreateauditentrybillingplan\">OrgCreateAuditEntryBillingPlan</a></code>)</p></td>\n<td><p>The billing plan for the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisableoauthapprestrictionsauditentry\">\n      <a href=\"#orgdisableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.disable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisablesamlauditentry\">\n      <a href=\"#orgdisablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.disable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgdisabletwofactorrequirementauditentry\">\n      <a href=\"#orgdisabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgDisableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.disable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenableoauthapprestrictionsauditentry\">\n      <a href=\"#orgenableoauthapprestrictionsauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableOauthAppRestrictionsAuditEntry</h2>\n    <p>Audit log entry for a org.enable_oauth_app_restrictions event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenablesamlauditentry\">\n      <a href=\"#orgenablesamlauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableSamlAuditEntry</h2>\n    <p>Audit log entry for a org.enable_saml event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>digestMethodUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s digest algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuerUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s issuer URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethodUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s signature algorithm URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>singleSignOnUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The SAML provider&apos;s single sign-on URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgenabletwofactorrequirementauditentry\">\n      <a href=\"#orgenabletwofactorrequirementauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgEnableTwoFactorRequirementAuditEntry</h2>\n    <p>Audit log entry for a org.enable_two_factor_requirement event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitememberauditentry\">\n      <a href=\"#orginvitememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteMemberAuditEntry</h2>\n    <p>Audit log entry for a org.invite_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationInvitation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The organization invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orginvitetobusinessauditentry\">\n      <a href=\"#orginvitetobusinessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgInviteToBusinessAuditEntry</h2>\n    <p>Audit log entry for a org.invite_to_business event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessapprovedauditentry\">\n      <a href=\"#orgoauthappaccessapprovedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessApprovedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_approved event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessdeniedauditentry\">\n      <a href=\"#orgoauthappaccessdeniedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessDeniedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_denied event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgoauthappaccessrequestedauditentry\">\n      <a href=\"#orgoauthappaccessrequestedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgOauthAppAccessRequestedAuditEntry</h2>\n    <p>Audit log entry for a org.oauth_app_access_requested event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#oauthapplicationauditentrydata\">OauthApplicationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oauthApplicationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the OAuth Application.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovebillingmanagerauditentry\">\n      <a href=\"#orgremovebillingmanagerauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveBillingManagerAuditEntry</h2>\n    <p>Audit log entry for a org.remove_billing_manager event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremovebillingmanagerauditentryreason\">OrgRemoveBillingManagerAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the billing manager being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremovememberauditentry\">\n      <a href=\"#orgremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a org.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremovememberauditentrymembershiptype\">[OrgRemoveMemberAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the member has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremovememberauditentryreason\">OrgRemoveMemberAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the member being removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgremoveoutsidecollaboratorauditentry\">\n      <a href=\"#orgremoveoutsidecollaboratorauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRemoveOutsideCollaboratorAuditEntry</h2>\n    <p>Audit log entry for a org.remove_outside_collaborator event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membershipTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremoveoutsidecollaboratorauditentrymembershiptype\">[OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]</a></code>)</p></td>\n<td><p>The types of membership the outside collaborator has with the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgremoveoutsidecollaboratorauditentryreason\">OrgRemoveOutsideCollaboratorAuditEntryReason</a></code>)</p></td>\n<td><p>The reason for the outside collaborator being removed from the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestorememberauditentry\">\n      <a href=\"#orgrestorememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberAuditEntry</h2>\n    <p>Audit log entry for a org.restore_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredCustomEmailRoutingsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of custom email routings for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredIssueAssignmentsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of issue assignments for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMemberships</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#orgrestorememberauditentrymembership\">[OrgRestoreMemberAuditEntryMembership!]</a></code>)</p></td>\n<td><p>Restored organization membership objects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredMembershipsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of restored memberships.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoriesCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of repositories of the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryStarsCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of starred repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>restoredRepositoryWatchesCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of watched repositories for the restored member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiporganizationauditentrydata\">\n      <a href=\"#orgrestoremembermembershiporganizationauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipOrganizationAuditEntryData</h2>\n    <p>Metadata for an organization membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershiprepositoryauditentrydata\">\n      <a href=\"#orgrestoremembermembershiprepositoryauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipRepositoryAuditEntryData</h2>\n    <p>Metadata for a repository membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgrestoremembermembershipteamauditentrydata\">\n      <a href=\"#orgrestoremembermembershipteamauditentrydata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgRestoreMemberMembershipTeamAuditEntryData</h2>\n    <p>Metadata for a team membership for org.restore_member actions.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgunblockuserauditentry\">\n      <a href=\"#orgunblockuserauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUnblockUserAuditEntry</h2>\n    <p>Audit log entry for a org.unblock_user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUser</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user being unblocked by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockedUserUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the blocked user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatedefaultrepositorypermissionauditentry\">\n      <a href=\"#orgupdatedefaultrepositorypermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateDefaultRepositoryPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_default_repository_permission.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The new base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatedefaultrepositorypermissionauditentrypermission\">OrgUpdateDefaultRepositoryPermissionAuditEntryPermission</a></code>)</p></td>\n<td><p>The former base repository permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberauditentry\">\n      <a href=\"#orgupdatememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberAuditEntry</h2>\n    <p>Audit log entry for a org.update_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The new member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionWas</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatememberauditentrypermission\">OrgUpdateMemberAuditEntryPermission</a></code>)</p></td>\n<td><p>The former member permission level for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositorycreationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositorycreationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryCreationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_creation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canCreateRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can members create repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orgupdatememberrepositorycreationpermissionauditentryvisibility\">OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility</a></code>)</p></td>\n<td><p>The permission for visibility level of repositories for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"orgupdatememberrepositoryinvitationpermissionauditentry\">\n      <a href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</h2>\n    <p>Audit log entry for a org.update_member_repository_invitation_permission event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canInviteOutsideCollaboratorsToRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Can outside collaborators be invited to repositories in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organization\">\n      <a href=\"#organization\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Organization</h2>\n    <p>An account on GitHub, with one or more owners, that has repositories, members and teams.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>auditLog</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationauditentryconnection\">OrganizationAuditEntryConnection!</a></code>)</p></td>\n<td><p>Audit log entries of the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#auditlogorder\">AuditLogOrder</a></code>)</p>\n<p>Ordering options for the returned audit log entries.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The query string to filter audit entries.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the organization&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile description rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseOwners</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationenterpriseownerconnection\">OrganizationEnterpriseOwnerConnection!</a></code>)</p></td>\n<td><p>A list of owners of the organization&apos;s enterprise account.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#orgenterpriseownerorder\">OrgEnterpriseOwnerOrder</a></code>)</p>\n<p>Ordering options for enterprise owners returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization</a></code>)</p>\n<p>The organization role to filter by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEnabledSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistenabledsettingvalue\">IpAllowListEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has an IP allow list enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListEntries</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ipallowlistentryconnection\">IpAllowListEntryConnection!</a></code>)</p></td>\n<td><p>The IP addresses that are allowed to access resources owned by the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#ipallowlistentryorder\">IpAllowListEntryOrder</a></code>)</p>\n<p>Ordering options for IP allow list entries returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ipAllowListForInstalledAppsEnabledSetting</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#ipallowlistforinstalledappsenabledsettingvalue\">IpAllowListForInstalledAppsEnabledSettingValue!</a></code>)</p></td>\n<td><p>The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization&apos;s login name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersCanForkPrivateRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Members can fork private repositories in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersWithRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationmemberconnection\">OrganizationMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationBillingEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The billing email for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingMembers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users who have been invited to join this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryMigrations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorymigrationconnection\">RepositoryMigrationConnection!</a></code>)</p></td>\n<td><p>A list of all repository migrations for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositorymigrationorder\">RepositoryMigrationOrder</a></code>)</p>\n<p>Ordering options for repository migrations returned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#migrationstate\">MigrationState</a></code>)</p>\n<p>Filter repository migrations by state.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresTwoFactorAuthentication</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>samlIdentityProvider</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationidentityprovider\">OrganizationIdentityProvider</a></code>)</p></td>\n<td><p>The Organization&apos;s SAML identity providers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>Find an organization&apos;s team by its slug.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>slug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name or slug of the team to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teams</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams in this organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ldapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, filters teams that are mapped to an LDAP Group (Enterprise only).</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Ordering options for teams returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamprivacy\">TeamPrivacy</a></code>)</p>\n<p>If non-null, filters teams according to privacy.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If non-null, filters teams with query on team name and team slug.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamrole\">TeamRole</a></code>)</p>\n<p>If non-null, filters teams according to whether the viewer is an admin or member on team.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>rootTeamsOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, restrict to only root teams.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing organization&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The organization&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Organization is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create repositories on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateTeams</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer can create teams on this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsAMember</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Viewer is an active member of this organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The organization&apos;s public profile URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryconnection\">\n      <a href=\"#organizationauditentryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryConnection</h2>\n    <p>The connection type for OrganizationAuditEntry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationauditentryedge\">[OrganizationAuditEntryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#organizationauditentry\">[OrganizationAuditEntry]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationauditentryedge\">\n      <a href=\"#organizationauditentryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationAuditEntryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#organizationauditentry\">OrganizationAuditEntry</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationconnection\">\n      <a href=\"#organizationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationConnection</h2>\n    <p>A list of organizations managed by an enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationedge\">[OrganizationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">[Organization]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationedge\">\n      <a href=\"#organizationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseownerconnection\">\n      <a href=\"#organizationenterpriseownerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationenterpriseowneredge\">[OrganizationEnterpriseOwnerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationenterpriseowneredge\">\n      <a href=\"#organizationenterpriseowneredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationEnterpriseOwnerEdge</h2>\n    <p>An enterprise owner in the context of an organization that is part of the enterprise.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationRole</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#roleinorganization\">RoleInOrganization!</a></code>)</p></td>\n<td><p>The role of the owner with respect to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationidentityprovider\">\n      <a href=\"#organizationidentityprovider\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationIdentityProvider</h2>\n    <p>An Identity Provider configured to provision SAML and SCIM identities for Organizations.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>digestMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The digest algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>externalIdentities</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#externalidentityconnection\">ExternalIdentityConnection!</a></code>)</p></td>\n<td><p>External Identities provisioned by this Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users login.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membersOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter to external identities with valid org membership only.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter to external identities with the users userName/NameID attribute.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>idpCertificate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#x509certificate\">X509Certificate</a></code>)</p></td>\n<td><p>The x509 certificate used by the Identity Provider to sign assertions and responses.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issuer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Issuer Entity ID for the SAML Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Organization this Identity Provider belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signatureMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The signature algorithm used to sign SAML requests for the Identity Provider.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ssoUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL endpoint for the Identity Provider&apos;s SAML SSO.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitation\">\n      <a href=\"#organizationinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitation</h2>\n    <p>An Invitation for a user to an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address of the user invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationinvitationtype\">OrganizationInvitationType!</a></code>)</p></td>\n<td><p>The type of invitation that was sent (e.g. email, user).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was invited to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the invite is for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationinvitationrole\">OrganizationInvitationRole!</a></code>)</p></td>\n<td><p>The user&apos;s pending role in the organization (e.g. member, owner).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationconnection\">\n      <a href=\"#organizationinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationConnection</h2>\n    <p>The connection type for OrganizationInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitationedge\">[OrganizationInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">[OrganizationInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationinvitationedge\">\n      <a href=\"#organizationinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitation\">OrganizationInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberconnection\">\n      <a href=\"#organizationmemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationmemberedge\">[OrganizationMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationmemberedge\">\n      <a href=\"#organizationmemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationMemberEdge</h2>\n    <p>Represents a user within an organization.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasTwoFactorEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#organizationmemberrole\">OrganizationMemberRole</a></code>)</p></td>\n<td><p>The role this user has in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationteamshovercardcontext\">\n      <a href=\"#organizationteamshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationTeamsHovercardContext</h2>\n    <p>An organization teams hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantTeams</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>Teams in this organization the user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The path for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The URL for the full team list for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalTeamCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of teams the user is on in the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"organizationshovercardcontext\">\n      <a href=\"#organizationshovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>OrganizationsHovercardContext</h2>\n    <p>An organization list hovercard context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relevantOrganizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>Organizations this user is a member of that are relevant.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalOrganizationCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total number of organizations this user is in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pageinfo\">\n      <a href=\"#pageinfo\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PageInfo</h2>\n    <p>Information about pagination in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>endCursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating forwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasNextPage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating forwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasPreviousPage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When paginating backwards, are there more items?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startCursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>When paginating backwards, the cursor to continue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"permissionsource\">\n      <a href=\"#permissionsource\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PermissionSource</h2>\n    <p>A level of permission and source for a user&apos;s access to a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization the repository belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#defaultrepositorypermissionfield\">DefaultRepositoryPermissionField!</a></code>)</p></td>\n<td><p>The level of access this source has granted to the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#permissiongranter\">PermissionGranter!</a></code>)</p></td>\n<td><p>The source of this permission.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemconnection\">\n      <a href=\"#pinnableitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemConnection</h2>\n    <p>The connection type for PinnableItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemedge\">[PinnableItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pinnableitem\">[PinnableItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnableitemedge\">\n      <a href=\"#pinnableitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnableItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pinnableitem\">PinnableItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussion\">\n      <a href=\"#pinneddiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussion</h2>\n    <p>A Pinned Discussion is a discussion pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion!</a></code>)</p></td>\n<td><p>The discussion that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gradientStopColors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Color stops of the chosen gradient.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinneddiscussionpattern\">PinnedDiscussionPattern!</a></code>)</p></td>\n<td><p>Background texture pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>preconfiguredGradient</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinneddiscussiongradient\">PinnedDiscussionGradient</a></code>)</p></td>\n<td><p>Preconfigured background gradient option.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionconnection\">\n      <a href=\"#pinneddiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionConnection</h2>\n    <p>The connection type for PinnedDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinneddiscussionedge\">[PinnedDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinneddiscussion\">[PinnedDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinneddiscussionedge\">\n      <a href=\"#pinneddiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinneddiscussion\">PinnedDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedevent\">\n      <a href=\"#pinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedEvent</h2>\n    <p>Represents a<code>pinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissue\">\n      <a href=\"#pinnedissue\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssue</h2>\n    <p>A Pinned Issue is a issue pinned to a repository&apos;s index page.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>The issue that was pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor that pinned this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that this issue was pinned to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueconnection\">\n      <a href=\"#pinnedissueconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueConnection</h2>\n    <p>The connection type for PinnedIssue.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnedissueedge\">[PinnedIssueEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnedissue\">[PinnedIssue]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pinnedissueedge\">\n      <a href=\"#pinnedissueedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PinnedIssueEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnedissue\">PinnedIssue</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingdisableauditentry\">\n      <a href=\"#privaterepositoryforkingdisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingDisableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"privaterepositoryforkingenableauditentry\">\n      <a href=\"#privaterepositoryforkingenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PrivateRepositoryForkingEnableAuditEntry</h2>\n    <p>Audit log entry for a private_repository_forking.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"profileitemshowcase\">\n      <a href=\"#profileitemshowcase\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProfileItemShowcase</h2>\n    <p>A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>hasPinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the owner has pinned any repositories or gists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>items</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner&apos;s popular\nrepositories will be returned.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"project\">\n      <a href=\"#project\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Project</h2>\n    <p>Projects manage issues, pull requests and notes within a project owner.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The project&apos;s description body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The projects description body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the object is closed (definition of closed may depend on type).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>columns</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumnconnection\">ProjectColumnConnection!</a></code>)</p></td>\n<td><p>List of columns in the project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who originally created the project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The project&apos;s number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#projectowner\">ProjectOwner!</a></code>)</p></td>\n<td><p>The project&apos;s owner. Currently limited to repositories, organizations, and users.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingCards</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of pending cards in this project.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>progress</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectprogress\">ProjectProgress!</a></code>)</p></td>\n<td><p>Project progress details.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">ProjectState!</a></code>)</p></td>\n<td><p>Whether the project is open or closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcard\">\n      <a href=\"#projectcard\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCard</h2>\n    <p>A card in a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#projectcarditem\">ProjectCardItem</a></code>)</p></td>\n<td><p>The card content item.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether the card is archived.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>note</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The card note.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardstate\">ProjectCardState</a></code>)</p></td>\n<td><p>The state of ProjectCard.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this card.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardconnection\">\n      <a href=\"#projectcardconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardConnection</h2>\n    <p>The connection type for ProjectCard.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardedge\">[ProjectCardEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">[ProjectCard]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcardedge\">\n      <a href=\"#projectcardedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectCardEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcard\">ProjectCard</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumn\">\n      <a href=\"#projectcolumn\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumn</h2>\n    <p>A column inside a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cards</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of cards in the column.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The project column&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project!</a></code>)</p></td>\n<td><p>The project that contains this column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>purpose</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcolumnpurpose\">ProjectColumnPurpose</a></code>)</p></td>\n<td><p>The semantic purpose of the column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this project column.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnconnection\">\n      <a href=\"#projectcolumnconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnConnection</h2>\n    <p>The connection type for ProjectColumn.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumnedge\">[ProjectColumnEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumn\">[ProjectColumn]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectcolumnedge\">\n      <a href=\"#projectcolumnedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectColumnEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcolumn\">ProjectColumn</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectconnection\">\n      <a href=\"#projectconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectConnection</h2>\n    <p>A list of projects associated with the owner.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectedge\">[ProjectEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">[Project]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectedge\">\n      <a href=\"#projectedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"projectprogress\">\n      <a href=\"#projectprogress\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ProjectProgress</h2>\n    <p>Project progress stats.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>doneCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>donePercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of done cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether progress tracking is enabled and cards with purpose exist for this project.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inProgressPercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of in-progress cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>todoPercentage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#float\">Float!</a></code>)</p></td>\n<td><p>The percentage of to do cards.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickey\">\n      <a href=\"#publickey\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKey</h2>\n    <p>A user&apos;s public key.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>accessedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fingerprint</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The fingerprint for this PublicKey.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>key</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The public key string.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyconnection\">\n      <a href=\"#publickeyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyConnection</h2>\n    <p>The connection type for PublicKey.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#publickeyedge\">[PublicKeyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#publickey\">[PublicKey]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"publickeyedge\">\n      <a href=\"#publickeyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PublicKeyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#publickey\">PublicKey</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequest\">\n      <a href=\"#pullrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequest</h2>\n    <p>A repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>activeLockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#lockreason\">LockReason</a></code>)</p></td>\n<td><p>Reason that the conversation was locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignees</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users assigned to this object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#automergerequest\">AutoMergeRequest</a></code>)</p></td>\n<td><p>Returns the auto-merge request object if one exists for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the base Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRefOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>baseRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s base Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canBeRebased</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request is rebaseable.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>canBeRebased</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>changedFiles</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of changed files in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>checksUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the checks of this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was closed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closingIssuesReferences</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection</a></code>)</p></td>\n<td><p>List of issues that were may be closed by this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLinkedOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Return only manually linked Issues.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommitconnection\">PullRequestCommitConnection!</a></code>)</p></td>\n<td><p>A list of commits present in this pull request&apos;s head branch not present in the base branch.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions in this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this pull request&apos;s body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>files</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestchangedfileconnection\">PullRequestChangedFileConnection</a></code>)</p></td>\n<td><p>Lists the files changed within this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Identifies the head Ref associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRefOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>headRepositoryOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>)</p></td>\n<td><p>The owner of the repository associated with this pull request&apos;s head Ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeNotificationContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether or not to include notification contexts.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The head and base repositories are different.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the pull request is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isReadByViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Is this pull request read by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the object.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestOpinionatedReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>writersOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Only return reviews from user who have write access to the repository.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of latest reviews per user associated with the pull request that are not also pending review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>locked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p><code>true</code> if the pull request is locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>maintainerCanModify</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether maintainers can modify the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that was created when this pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeStateStatus</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#mergestatestatus\">MergeStateStatus!</a></code>)</p></td>\n<td><p>Detailed information about the current pull request merge state status.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>mergeStateStatus</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#merge-info-preview\">Merge info preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#mergeablestate\">MergeableState!</a></code>)</p></td>\n<td><p>Whether or not the pull request can be merged based on the existence of merge conflicts.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>merged</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The date and time that the pull request was merged.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who merged the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Identifies the milestone associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the pull request number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>participants</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that are participating in the Pull Request conversation.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink to the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>potentialMergeCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\n<code>mergeable</code> field for more details on the mergeability of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectCards</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectcardconnection\">ProjectCardConnection!</a></code>)</p></td>\n<td><p>List of project cards associated with this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>archivedStates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectcardarchivedstate\">[ProjectCardArchivedState]</a></code>)</p>\n<p>A list of archived states to filter the cards by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>revertUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for reverting this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of this pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequestconnection\">ReviewRequestConnection</a></code>)</p></td>\n<td><p>A list of review requests associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewThreads</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthreadconnection\">PullRequestReviewThreadConnection!</a></code>)</p></td>\n<td><p>The list of all review threads for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewconnection\">PullRequestReviewConnection</a></code>)</p></td>\n<td><p>A list of reviews associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filter by author of the review.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewstate\">[PullRequestReviewState!]</a></code>)</p>\n<p>A list of states to filter the reviews.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">PullRequestState!</a></code>)</p></td>\n<td><p>Identifies the state of the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestedReviewers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#suggestedreviewer\">[SuggestedReviewer]!</a></code>)</p></td>\n<td><p>A list of reviewer suggestions based on commit history and past review comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timeline</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttimelineconnection\">PullRequestTimelineConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>timeline</code> is deprecated.</p><p><code>timeline</code> will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Allows filtering timeline events by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>timelineItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttimelineitemsconnection\">PullRequestTimelineItemsConnection!</a></code>)</p></td>\n<td><p>A list of events, comments, commits, etc. associated with the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>itemTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequesttimelineitemsitemtype\">[PullRequestTimelineItemsItemType!]</a></code>)</p>\n<p>Filter timeline items by type.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Filter timeline items by a <code>since</code> timestamp.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request title.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>titleHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>Identifies the pull request title rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanApplySuggestion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can apply suggestion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDeleteHeadRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer can restore the deleted head ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDisableAutoMerge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can disable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanEnableAutoMerge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can enable auto-merge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMergeAsAdmin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can bypass branch protections and merge the pull request immediately.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The latest review given from the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerLatestReviewRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The person who has requested the viewer for review on this pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeBodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge body text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerMergeHeadlineText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The merge headline text for the viewer and method.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>mergeType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod</a></code>)</p>\n<p>The merge method for the message.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfile\">\n      <a href=\"#pullrequestchangedfile\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFile</h2>\n    <p>A file changed in a pull request.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>additions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of additions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of deletions to the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerViewedState</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#fileviewedstate\">FileViewedState!</a></code>)</p></td>\n<td><p>The state of the file for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileconnection\">\n      <a href=\"#pullrequestchangedfileconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileConnection</h2>\n    <p>The connection type for PullRequestChangedFile.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestchangedfileedge\">[PullRequestChangedFileEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestchangedfile\">[PullRequestChangedFile]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestchangedfileedge\">\n      <a href=\"#pullrequestchangedfileedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestChangedFileEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestchangedfile\">PullRequestChangedFile</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommit\">\n      <a href=\"#pullrequestcommit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommit</h2>\n    <p>Represents a Git commit part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The Git commit object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this pull request commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitcommentthread\">\n      <a href=\"#pullrequestcommitcommentthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitCommentThread</h2>\n    <p>Represents a commit comment thread part of a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>The comments that exist in this thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The commit the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The file the comments were made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The position in the diff for the commit that the comment was made on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request this commit comment thread belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitconnection\">\n      <a href=\"#pullrequestcommitconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitConnection</h2>\n    <p>The connection type for PullRequestCommit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommitedge\">[PullRequestCommitEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommit\">[PullRequestCommit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcommitedge\">\n      <a href=\"#pullrequestcommitedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestCommitEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestconnection\">\n      <a href=\"#pullrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestConnection</h2>\n    <p>The connection type for PullRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestedge\">[PullRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">[PullRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestcontributionsbyrepository\">\n      <a href=\"#pullrequestcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestContributionsByRepository</h2>\n    <p>This aggregates pull requests opened by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestcontributionconnection\">CreatedPullRequestContributionConnection!</a></code>)</p></td>\n<td><p>The pull request contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull requests were opened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestedge\">\n      <a href=\"#pullrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreview\">\n      <a href=\"#pullrequestreview\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReview</h2>\n    <p>A review object for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorCanPushToRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the author of this review has push access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the pull request review body.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of this review rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of review comments for the current pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>onBehalfOf</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that this review was made on behalf of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the current state of the pull request review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submittedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the Pull Request Review was submitted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this PullRequestReview.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcomment\">\n      <a href=\"#pullrequestreviewcomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewComment</h2>\n    <p>A review comment associated with a given repository pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#minimizable\">Minimizable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the subject of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The comment body of this review comment rendered as plain text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffHunk</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The diff hunk to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>draftedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was created in a draft state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMinimized</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not a comment has been minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>minimizedReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Returns why the comment was minimized.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the original commit associated with the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalPosition</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The original line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>outdated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies when the comment body is outdated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>position</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line index in the diff to which the comment applies.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestReview</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The pull request review associated with this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>replyTo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The comment this is a reply to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository associated with this node.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewcommentstate\">PullRequestReviewCommentState!</a></code>)</p></td>\n<td><p>Identifies the state of the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the comment was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL permalink for this review comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanMinimize</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can minimize this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentconnection\">\n      <a href=\"#pullrequestreviewcommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentConnection</h2>\n    <p>The connection type for PullRequestReviewComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcommentedge\">[PullRequestReviewCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcomment\">[PullRequestReviewComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcommentedge\">\n      <a href=\"#pullrequestreviewcommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcomment\">PullRequestReviewComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewconnection\">\n      <a href=\"#pullrequestreviewconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewConnection</h2>\n    <p>The connection type for PullRequestReview.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewedge\">[PullRequestReviewEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">[PullRequestReview]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewcontributionsbyrepository\">\n      <a href=\"#pullrequestreviewcontributionsbyrepository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewContributionsByRepository</h2>\n    <p>This aggregates pull request reviews made by a user within one repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contributions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#createdpullrequestreviewcontributionconnection\">CreatedPullRequestReviewContributionConnection!</a></code>)</p></td>\n<td><p>The pull request review contributions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#contributionorder\">ContributionOrder</a></code>)</p>\n<p>Ordering options for contributions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository in which the pull request reviews were made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewedge\">\n      <a href=\"#pullrequestreviewedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthread\">\n      <a href=\"#pullrequestreviewthread\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThread</h2>\n    <p>A threaded list of comments for a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewcommentconnection\">PullRequestReviewCommentConnection!</a></code>)</p></td>\n<td><p>A list of pull request comments associated with the thread.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>skip</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Skips the first <em>n</em> elements in the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diffSide</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide!</a></code>)</p></td>\n<td><p>The side of the diff on which this thread was placed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCollapsed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the thread has been collapsed (resolved).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOutdated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether this thread was outdated by newer changes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isResolved</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this thread has been resolved.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original line in the file to which this thread refers.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>originalStartLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The original start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the file path of this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resolvedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who resolved this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startDiffSide</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#diffside\">DiffSide</a></code>)</p></td>\n<td><p>The side of the diff that the first line of the thread starts on (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>startLine</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The start line in the file to which this thread refers (multi-line only).</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReply</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the current viewer can reply to this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanResolve</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can resolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUnresolve</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer can unresolve this thread.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadconnection\">\n      <a href=\"#pullrequestreviewthreadconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadConnection</h2>\n    <p>Review comment threads for a pull request review.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthreadedge\">[PullRequestReviewThreadEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthread\">[PullRequestReviewThread]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestreviewthreadedge\">\n      <a href=\"#pullrequestreviewthreadedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestReviewThreadEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreviewthread\">PullRequestReviewThread</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequestrevisionmarker\">\n      <a href=\"#pullrequestrevisionmarker\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestRevisionMarker</h2>\n    <p>Represents the latest point in the pull request timeline for which the viewer has seen the pull request&apos;s commits.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastSeenCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit!</a></code>)</p></td>\n<td><p>The last commit the viewer has seen.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>The pull request to which the marker belongs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttemplate\">\n      <a href=\"#pullrequesttemplate\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTemplate</h2>\n    <p>A repository pull request template.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The body of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filename</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The filename of the template.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the template belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineconnection\">\n      <a href=\"#pullrequesttimelineconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineConnection</h2>\n    <p>The connection type for PullRequestTimelineItem.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttimelineitemedge\">[PullRequestTimelineItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pullrequesttimelineitem\">[PullRequestTimelineItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemedge\">\n      <a href=\"#pullrequesttimelineitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pullrequesttimelineitem\">PullRequestTimelineItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsconnection\">\n      <a href=\"#pullrequesttimelineitemsconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsConnection</h2>\n    <p>The connection type for PullRequestTimelineItems.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttimelineitemsedge\">[PullRequestTimelineItemsEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>filteredCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code> and <code>after</code> filters.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pullrequesttimelineitems\">[PullRequestTimelineItems]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the count of items after applying <code>before</code>/<code>after</code> filters and <code>first</code>/<code>last</code>/<code>skip</code> slicing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the timeline was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pullrequesttimelineitemsedge\">\n      <a href=\"#pullrequesttimelineitemsedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PullRequestTimelineItemsEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pullrequesttimelineitems\">PullRequestTimelineItems</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"push\">\n      <a href=\"#push\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Push</h2>\n    <p>A Git push.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>nextSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA after the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousSha</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The SHA before the push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pusher</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor!</a></code>)</p></td>\n<td><p>The actor who pushed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that was pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowance\">\n      <a href=\"#pushallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowance</h2>\n    <p>A team, user or app who has the ability to push to a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#pushallowanceactor\">PushAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can push.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceconnection\">\n      <a href=\"#pushallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceConnection</h2>\n    <p>The connection type for PushAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pushallowanceedge\">[PushAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pushallowance\">[PushAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"pushallowanceedge\">\n      <a href=\"#pushallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>PushAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pushallowance\">PushAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ratelimit\">\n      <a href=\"#ratelimit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RateLimit</h2>\n    <p>Represents the client&apos;s rate limit.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cost</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The point cost for the current query counting against the rate limit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>limit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of points the client is permitted to consume in a 60 minute window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodeCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The maximum number of nodes this query may return.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>remaining</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points remaining in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resetAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The time at which the current rate limit window resets in UTC epoch seconds.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>used</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of points used in the current rate limit window.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguserconnection\">\n      <a href=\"#reactinguserconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactinguseredge\">[ReactingUserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactinguseredge\">\n      <a href=\"#reactinguseredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactingUserEdge</h2>\n    <p>Represents a user that&apos;s made a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reaction\">\n      <a href=\"#reaction\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Reaction</h2>\n    <p>An emoji reaction to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The reactable piece of content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the user who created this reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionconnection\">\n      <a href=\"#reactionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionConnection</h2>\n    <p>A list of reactions that have been left on the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionedge\">[ReactionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reaction\">[Reaction]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactionedge\">\n      <a href=\"#reactionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reaction\">Reaction</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactiongroup\">\n      <a href=\"#reactiongroup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactionGroup</h2>\n    <p>A group of emoji reactions to a particular piece of content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent!</a></code>)</p></td>\n<td><p>Identifies the emoji reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the reaction was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactorconnection\">ReactorConnection!</a></code>)</p></td>\n<td><p>Reactors to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable!</a></code>)</p></td>\n<td><p>The subject that was reacted to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>users</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactinguserconnection\">ReactingUserConnection!</a></code>)</p></td>\n<td><p>Users who have reacted to the reaction subject with the emotion represented by this reaction group.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>users</code> is deprecated.</p><p>Reactors can now be mannequins, bots, and organizations. Use the <code>reactors</code> field instead. Removal on 2021-10-01 UTC.</p>\n</div>\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasReacted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the authenticated user has left a reaction on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactorconnection\">\n      <a href=\"#reactorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorConnection</h2>\n    <p>The connection type for Reactor.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactoredge\">[ReactorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#reactor\">[Reactor]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reactoredge\">\n      <a href=\"#reactoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReactorEdge</h2>\n    <p>Represents an author of a reaction.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#reactor\">Reactor!</a></code>)</p></td>\n<td><p>The author of the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>The moment when the user made the reaction.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"readyforreviewevent\">\n      <a href=\"#readyforreviewevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReadyForReviewEvent</h2>\n    <p>Represents a<code>ready_for_review</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this ready for review event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"ref\">\n      <a href=\"#ref\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Ref</h2>\n    <p>Represents a Git reference.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>associatedPullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests with this ref as the head ref.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Branch protection rules for this ref.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>prefix</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The ref&apos;s prefix, such as <code>refs/heads/</code> or <code>refs/tags/</code>.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refUpdateRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#refupdaterule\">RefUpdateRule</a></code>)</p></td>\n<td><p>Branch protection rules that are viewable by non-admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository the ref belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>The object the ref points to. Returns null when object does not exist.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refconnection\">\n      <a href=\"#refconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefConnection</h2>\n    <p>The connection type for Ref.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#refedge\">[RefEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">[Ref]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refedge\">\n      <a href=\"#refedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"refupdaterule\">\n      <a href=\"#refupdaterule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RefUpdateRule</h2>\n    <p>A ref update rules for a viewer.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>allowsDeletions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can this branch be deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>allowsForcePushes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are force pushes allowed on this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pattern</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the protection rule pattern.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredApprovingReviewCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Number of approving reviews required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiredStatusCheckContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String]</a></code>)</p></td>\n<td><p>List of required status check contexts that must pass for commits to be accepted to matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresCodeOwnerReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are reviews from code owners required to update matching branches.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresConversationResolution</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are conversations required to be resolved before merging.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresLinearHistory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are merge commits prohibited from being pushed to this branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requiresSignatures</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Are commits required to be signed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerAllowedToDismissReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the viewer allowed to dismiss reviews.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPush</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer push to the branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"referencedevent\">\n      <a href=\"#referencedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReferencedEvent</h2>\n    <p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>Identifies the commit associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>Identifies the repository associated with the<code>referenced</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Reference originated in a different repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDirectReference</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#referencedsubject\">ReferencedSubject!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"release\">\n      <a href=\"#release\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Release</h2>\n    <p>A release contains the content for a release.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The author of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The description of this release rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDraft</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a draft.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLatest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is the latest releast.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrerelease</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the release is a prerelease.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection</a></code>)</p></td>\n<td><p>A list of users mentioned in the release description.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The title of the release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the release was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releaseAssets</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseassetconnection\">ReleaseAssetConnection!</a></code>)</p></td>\n<td><p>List of releases assets which are dependent on this release.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A list of names to filter the assets by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The repository that the release belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>A description of the release, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tag</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Git tag the release points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The tag commit for this release.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the release&apos;s Git tag.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this issue.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseasset\">\n      <a href=\"#releaseasset\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAsset</h2>\n    <p>A release asset contains the content for a release asset.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>contentType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The asset&apos;s content-type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of times this asset was downloaded.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>downloadUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL where you can download the release asset via the browser.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the title of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Release that the asset is associated with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The size (in bytes) of the asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>uploadedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user that performed the upload.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>Identifies the URL of the release asset.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetconnection\">\n      <a href=\"#releaseassetconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetConnection</h2>\n    <p>The connection type for ReleaseAsset.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseassetedge\">[ReleaseAssetEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseasset\">[ReleaseAsset]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseassetedge\">\n      <a href=\"#releaseassetedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseAssetEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseasset\">ReleaseAsset</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseconnection\">\n      <a href=\"#releaseconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseConnection</h2>\n    <p>The connection type for Release.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseedge\">[ReleaseEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">[Release]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"releaseedge\">\n      <a href=\"#releaseedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReleaseEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"removedfromprojectevent\">\n      <a href=\"#removedfromprojectevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RemovedFromProjectEvent</h2>\n    <p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Project referenced by event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>project</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectColumnName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Column name referenced by this project event.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>projectColumnName</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#project-event-details-preview\">Project event details preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"renamedtitleevent\">\n      <a href=\"#renamedtitleevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RenamedTitleEvent</h2>\n    <p>Represents a<code>renamed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>currentTitle</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the current title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousTitle</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the previous title of the issue or pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#renamedtitlesubject\">RenamedTitleSubject!</a></code>)</p></td>\n<td><p>Subject that was renamed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reopenedevent\">\n      <a href=\"#reopenedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReopenedEvent</h2>\n    <p>Represents a<code>reopened</code>event on any <code>Closable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>closable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#closable\">Closable!</a></code>)</p></td>\n<td><p>Object that was reopened.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaccessauditentry\">\n      <a href=\"#repoaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repoaccessauditentryvisibility\">RepoAccessAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddmemberauditentry\">\n      <a href=\"#repoaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repoaddmemberauditentryvisibility\">RepoAddMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoaddtopicauditentry\">\n      <a href=\"#repoaddtopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoAddTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.add_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoarchivedauditentry\">\n      <a href=\"#repoarchivedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoArchivedAuditEntry</h2>\n    <p>Audit log entry for a repo.archived event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repoarchivedauditentryvisibility\">RepoArchivedAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repochangemergesettingauditentry\">\n      <a href=\"#repochangemergesettingauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoChangeMergeSettingAuditEntry</h2>\n    <p>Audit log entry for a repo.change_merge_setting event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the change was to enable (true) or disable (false) the merge type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repochangemergesettingauditentrymergetype\">RepoChangeMergeSettingAuditEntryMergeType</a></code>)</p></td>\n<td><p>The merge method affected by the change.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigdisableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigdisablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigdisablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigdisablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigDisableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.disable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenableanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigenableanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecollaboratorsonlyauditentry\">\n      <a href=\"#repoconfigenablecollaboratorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableCollaboratorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_collaborators_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablecontributorsonlyauditentry\">\n      <a href=\"#repoconfigenablecontributorsonlyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableContributorsOnlyAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_contributors_only event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigenablesockpuppetdisallowedauditentry\">\n      <a href=\"#repoconfigenablesockpuppetdisallowedauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigEnableSockpuppetDisallowedAuditEntry</h2>\n    <p>Audit log entry for a repo.config.enable_sockpuppet_disallowed event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfiglockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfiglockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigLockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.lock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repoconfigunlockanonymousgitaccessauditentry\">\n      <a href=\"#repoconfigunlockanonymousgitaccessauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoConfigUnlockAnonymousGitAccessAuditEntry</h2>\n    <p>Audit log entry for a repo.config.unlock_anonymous_git_access event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repocreateauditentry\">\n      <a href=\"#repocreateauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoCreateAuditEntry</h2>\n    <p>Audit log entry for a repo.create event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkParentName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the parent repository for this forked repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkSourceName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the root repository for this network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repocreateauditentryvisibility\">RepoCreateAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repodestroyauditentry\">\n      <a href=\"#repodestroyauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoDestroyAuditEntry</h2>\n    <p>Audit log entry for a repo.destroy event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repodestroyauditentryvisibility\">RepoDestroyAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovememberauditentry\">\n      <a href=\"#reporemovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reporemovememberauditentryvisibility\">RepoRemoveMemberAuditEntryVisibility</a></code>)</p></td>\n<td><p>The visibility of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reporemovetopicauditentry\">\n      <a href=\"#reporemovetopicauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepoRemoveTopicAuditEntry</h2>\n    <p>Audit log entry for a repo.remove_topic event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#topicauditentrydata\">TopicAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#topic\">Topic</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topicName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the topic added to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repository\">\n      <a href=\"#repository\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Repository</h2>\n    <p>A repository contains the content for a project.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>assignableUsers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users that can be assigned to issues in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>autoMergeAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not Auto-merge can be enabled on pull requests in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRules</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionruleconnection\">BranchProtectionRuleConnection!</a></code>)</p></td>\n<td><p>A list of branch protection rules for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeOfConduct</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#codeofconduct\">CodeOfConduct</a></code>)</p></td>\n<td><p>Returns the code of conduct for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>codeowners</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycodeowners\">RepositoryCodeowners</a></code>)</p></td>\n<td><p>Information extracted from the repository&apos;s <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The ref name used to return the associated <code>CODEOWNERS</code> file.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>collaborators</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycollaboratorconnection\">RepositoryCollaboratorConnection</a></code>)</p></td>\n<td><p>A list of collaborators associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#collaboratoraffiliation\">CollaboratorAffiliation</a></code>)</p>\n<p>Collaborators affiliation level with a repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contactLinks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycontactlink\">[RepositoryContactLink!]</a></code>)</p></td>\n<td><p>Returns a list of contact links associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>defaultBranchRef</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>The Ref associated with the repository&apos;s default branch.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deleteBranchOnMerge</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not branches are automatically deleted when merged in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployKeys</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploykeyconnection\">DeployKeyConnection!</a></code>)</p></td>\n<td><p>A list of deploy keys that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deployments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentconnection\">DeploymentConnection!</a></code>)</p></td>\n<td><p>Deployments associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>environments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>Environments to list deployments for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#deploymentorder\">DeploymentOrder</a></code>)</p>\n<p>Ordering options for deployments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>descriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The description of the repository rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussion\">Discussion</a></code>)</p></td>\n<td><p>Returns a single discussion from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the discussion to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCategories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncategoryconnection\">DiscussionCategoryConnection!</a></code>)</p></td>\n<td><p>A list of discussion categories that are available in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterByAssignable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter by categories that are assignable by the viewer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>categoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Only include discussions that belong to the category with this ID.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diskUsage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>The number of kilobytes this repository occupies on disk.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environment\">Environment</a></code>)</p></td>\n<td><p>Returns a single active environment from the current repository by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the environment to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>environments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#environmentconnection\">EnvironmentConnection!</a></code>)</p></td>\n<td><p>A list of environments that are in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many forks there are of this repository in the whole network.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forkingAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository allows forks.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>forks</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of direct forked repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasAnonymousAccessEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has anonymous Git read access feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasIssuesEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has issues feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasProjectsEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has the Projects feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hasWikiEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has wiki feature enabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>homepageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isArchived</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository is unmaintained.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBlankIssuesEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns true if blank issue creation is allowed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDisabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository disabled.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmpty</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns whether or not this repository is empty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFork</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isInOrganization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates if the repository has been locked or not.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isMirror</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a mirror.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is private or internal.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSecurityPolicyEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Returns true if this repository has a security policy.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isTemplate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Identifies if the repository is a template that can be used to generate new repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isUserConfigurationRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this repository a user configuration repository?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue</a></code>)</p></td>\n<td><p>Returns a single issue from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueOrPullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>Returns a single issue-like object from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the issue to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueTemplates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuetemplate\">[IssueTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of issue templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label</a></code>)</p></td>\n<td><p>Returns a single label by name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Label name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#labelconnection\">LabelConnection</a></code>)</p></td>\n<td><p>A list of labels associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#labelorder\">LabelOrder</a></code>)</p>\n<p>Ordering options for labels returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>If provided, searches labels by name and description.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>languages</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#languageconnection\">LanguageConnection</a></code>)</p></td>\n<td><p>A list containing a breakdown of the language composition of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#languageorder\">LanguageOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>latestRelease</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Get the latest release for the repository if one exists.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>licenseInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#license\">License</a></code>)</p></td>\n<td><p>The license associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorylockreason\">RepositoryLockReason</a></code>)</p></td>\n<td><p>The reason the repository has been locked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mentionableUsers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of Users that can be mentioned in the context of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters users with query on user name and login.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mergeCommitAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not PRs are merged with a merge commit on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestone</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestone\">Milestone</a></code>)</p></td>\n<td><p>Returns a single milestone from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the milestone to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>milestones</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#milestoneconnection\">MilestoneConnection</a></code>)</p></td>\n<td><p>A list of milestones associated with the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#milestoneorder\">MilestoneOrder</a></code>)</p>\n<p>Ordering options for milestones.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters milestones with a query on the title.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#milestonestate\">[MilestoneState!]</a></code>)</p>\n<p>Filter by the state of the milestones.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mirrorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The repository&apos;s original mirror URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nameWithOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The repository&apos;s name with owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>A Git object in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>expression</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A Git revision expression suitable for rev-parse.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p>\n<p>The Git object ID.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>openGraphImageUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The image used to represent this repository in Open Graph data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>owner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner!</a></code>)</p></td>\n<td><p>The User owner of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parent</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository parent, if this is a fork.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedDiscussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinneddiscussionconnection\">PinnedDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of discussions that have been pinned in this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedIssues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnedissueconnection\">PinnedIssueConnection</a></code>)</p></td>\n<td><p>A list of pinned issues for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>primaryLanguage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#language\">Language</a></code>)</p></td>\n<td><p>The primary language of the repository&apos;s code.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing the repository&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest</a></code>)</p></td>\n<td><p>Returns a single pull request from the current repository by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The number for the pull request to be returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestTemplates</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequesttemplate\">[PullRequestTemplate!]</a></code>)</p></td>\n<td><p>Returns a list of pull request templates associated to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests that have been opened in the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pushedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the repository was last pushed to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>rebaseMergeAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not rebase-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ref</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#ref\">Ref</a></code>)</p></td>\n<td><p>Fetch a given ref from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>qualifiedName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The ref to retrieve. Fully qualified matches are checked in order\n(<code>refs/heads/master</code>) before falling back onto checks for short name matches (<code>master</code>).</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>refs</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#refconnection\">RefConnection</a></code>)</p></td>\n<td><p>Fetch a list of refs from the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>direction</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#orderdirection\">OrderDirection</a></code>)</p>\n<p>DEPRECATED: use orderBy. The ordering direction.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reforder\">RefOrder</a></code>)</p>\n<p>Ordering options for refs returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Filters refs with query on name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>refPrefix</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>A ref name prefix like <code>refs/heads/</code>, <code>refs/tags/</code>, etc.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>release</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#release\">Release</a></code>)</p></td>\n<td><p>Lookup a single release given various criteria.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>tagName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The name of the Tag the Release was created from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>releases</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#releaseconnection\">ReleaseConnection!</a></code>)</p></td>\n<td><p>List of releases which are dependent on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#releaseorder\">ReleaseOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryTopics</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorytopicconnection\">RepositoryTopicConnection!</a></code>)</p></td>\n<td><p>A list of applied repository-topic associations for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityPolicyUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The security policy URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>shortDescriptionHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>A description of the repository, rendered to HTML without any links in it.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>limit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many characters to return.</p>\n<p>The default value is <code>200</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>squashMergeAllowed</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not squash-merging is enabled on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sshUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitsshremote\">GitSSHRemote!</a></code>)</p></td>\n<td><p>The SSH URL to clone this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodules</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submoduleconnection\">SubmoduleConnection!</a></code>)</p></td>\n<td><p>Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch&apos;s HEAD commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tempCloneToken</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Temporary authentication token for cloning this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>templateRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository from which this repository was generated, if any.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>usesCustomOpenGraphImage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer has admin permissions on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdateTopics</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Indicates whether the viewer can update the topics of this repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultCommitEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The last commit email for the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDefaultMergeMethod</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestmergemethod\">PullRequestMergeMethod!</a></code>)</p></td>\n<td><p>The last used merge method by the viewer or the default for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPermission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission</a></code>)</p></td>\n<td><p>The users permission level on the repository. Will return null if authenticated as an GitHub App.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerPossibleCommitEmails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p></td>\n<td><p>A list of emails this viewer can commit with.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>visibility</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvisibility\">RepositoryVisibility!</a></code>)</p></td>\n<td><p>Indicates the repository&apos;s visibility level.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilityAlerts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryvulnerabilityalertconnection\">RepositoryVulnerabilityAlertConnection</a></code>)</p></td>\n<td><p>A list of vulnerability alerts that are on this repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvulnerabilityalertstate\">[RepositoryVulnerabilityAlertState!]</a></code>)</p>\n<p>Filter by the state of the alert.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watchers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userconnection\">UserConnection!</a></code>)</p></td>\n<td><p>A list of users watching the repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeowners\">\n      <a href=\"#repositorycodeowners\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeowners</h2>\n    <p>Information extracted from a repository&apos;s <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>errors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycodeownerserror\">[RepositoryCodeownersError!]!</a></code>)</p></td>\n<td><p>Any problems that were encountered while parsing the <code>CODEOWNERS</code> file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycodeownerserror\">\n      <a href=\"#repositorycodeownerserror\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCodeownersError</h2>\n    <p>An error in a <code>CODEOWNERS</code> file.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>column</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The column number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>kind</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short string describing the type of error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>line</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The line number where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A complete description of the error, combining information from other fields.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path to the file when the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>source</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The content of the line where the error occurs.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suggestion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A suggestion of how to fix the error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratorconnection\">\n      <a href=\"#repositorycollaboratorconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorycollaboratoredge\">[RepositoryCollaboratorEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycollaboratoredge\">\n      <a href=\"#repositorycollaboratoredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryCollaboratorEdge</h2>\n    <p>Represents a user who is a collaborator of a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission the user has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permissionSources</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#permissionsource\">[PermissionSource!]</a></code>)</p></td>\n<td><p>A list of sources for the user&apos;s access to the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryconnection\">\n      <a href=\"#repositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryConnection</h2>\n    <p>A list of repositories owned by the subject.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryedge\">[RepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalDiskUsage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The total size in kilobytes of all repositories in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorycontactlink\">\n      <a href=\"#repositorycontactlink\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryContactLink</h2>\n    <p>A repository contact link.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>about</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link purpose.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The contact link name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The contact link URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryedge\">\n      <a href=\"#repositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitation\">\n      <a href=\"#repositoryinvitation\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitation</h2>\n    <p>An invitation for a user to be added to a repository.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The email address that received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who received the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>inviter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who created the invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The permalink for this repository invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission granted on this repository by this invitation.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryinfo\">RepositoryInfo</a></code>)</p></td>\n<td><p>The Repository the user is invited to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationconnection\">\n      <a href=\"#repositoryinvitationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationConnection</h2>\n    <p>The connection type for RepositoryInvitation.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryinvitationedge\">[RepositoryInvitationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryinvitation\">[RepositoryInvitation]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryinvitationedge\">\n      <a href=\"#repositoryinvitationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryInvitationEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryinvitation\">RepositoryInvitation</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigration\">\n      <a href=\"#repositorymigration\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigration</h2>\n    <p>An Octoshift repository migration.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#migration\">Migration</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>continueOnError</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>The Octoshift migration flag to continue on error.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>failureReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the migration failed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>migrationSource</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#migrationsource\">MigrationSource!</a></code>)</p></td>\n<td><p>The Octoshift migration source.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>sourceUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The Octoshift migration source URL.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#migrationstate\">MigrationState!</a></code>)</p></td>\n<td><p>The Octoshift migration state.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationconnection\">\n      <a href=\"#repositorymigrationconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationConnection</h2>\n    <p>The connection type for RepositoryMigration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorymigrationedge\">[RepositoryMigrationEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorymigration\">[RepositoryMigration]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorymigrationedge\">\n      <a href=\"#repositorymigrationedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryMigrationEdge</h2>\n    <p>Represents a repository migration.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorymigration\">RepositoryMigration</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopic\">\n      <a href=\"#repositorytopic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopic</h2>\n    <p>A repository-topic connects a repository to a topic.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topic</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#topic\">Topic!</a></code>)</p></td>\n<td><p>The topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this repository-topic.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicconnection\">\n      <a href=\"#repositorytopicconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicConnection</h2>\n    <p>The connection type for RepositoryTopic.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorytopicedge\">[RepositoryTopicEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorytopic\">[RepositoryTopic]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositorytopicedge\">\n      <a href=\"#repositorytopicedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryTopicEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositorytopic\">RepositoryTopic</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangedisableauditentry\">\n      <a href=\"#repositoryvisibilitychangedisableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeDisableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.disable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvisibilitychangeenableauditentry\">\n      <a href=\"#repositoryvisibilitychangeenableauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVisibilityChangeEnableAuditEntry</h2>\n    <p>Audit log entry for a repository_visibility_change.enable event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#enterpriseauditentrydata\">EnterpriseAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The slug of the enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>enterpriseUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this enterprise.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalert\">\n      <a href=\"#repositoryvulnerabilityalert\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlert</h2>\n    <p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorynode\">RepositoryNode</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When was the alert created?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was dismissed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert dismissed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismisser</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who dismissed the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixReason</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The reason the alert was marked as fixed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fixedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When was the alert fixed?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the alert number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The associated repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityAdvisory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The associated security advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>securityVulnerability</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The associated security vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryvulnerabilityalertstate\">RepositoryVulnerabilityAlertState!</a></code>)</p></td>\n<td><p>Identifies the state of the alert.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestFilename</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest filename.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableManifestPath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The vulnerable manifest path.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableRequirements</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The vulnerable requirements.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertconnection\">\n      <a href=\"#repositoryvulnerabilityalertconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertConnection</h2>\n    <p>The connection type for RepositoryVulnerabilityAlert.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryvulnerabilityalertedge\">[RepositoryVulnerabilityAlertEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryvulnerabilityalert\">[RepositoryVulnerabilityAlert]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"repositoryvulnerabilityalertedge\">\n      <a href=\"#repositoryvulnerabilityalertedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RepositoryVulnerabilityAlertEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryvulnerabilityalert\">RepositoryVulnerabilityAlert</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"requiredstatuscheckdescription\">\n      <a href=\"#requiredstatuscheckdescription\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RequiredStatusCheckDescription</h2>\n    <p>Represents a required status check for a protected branch, but not any specific run of that check.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>app</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#app\">App</a></code>)</p></td>\n<td><p>The App that must provide this status in order for it to be accepted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"restrictedcontribution\">\n      <a href=\"#restrictedcontribution\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>RestrictedContribution</h2>\n    <p>Represents a private contribution a user made on GitHub.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#contribution\">Contribution</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this contribution is associated with a record you do not have access to. For\nexample, your own &apos;first issue&apos; contribution may have been made on a repository you can no\nlonger access.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>occurredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this contribution was made.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who made this contribution.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowance\">\n      <a href=\"#reviewdismissalallowance\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowance</h2>\n    <p>A team or user who has the ability to dismiss a review on a protected branch.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#reviewdismissalallowanceactor\">ReviewDismissalAllowanceActor</a></code>)</p></td>\n<td><p>The actor that can dismiss.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>branchProtectionRule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#branchprotectionrule\">BranchProtectionRule</a></code>)</p></td>\n<td><p>Identifies the branch protection rule associated with the allowed user or team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceconnection\">\n      <a href=\"#reviewdismissalallowanceconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceConnection</h2>\n    <p>The connection type for ReviewDismissalAllowance.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewdismissalallowanceedge\">[ReviewDismissalAllowanceEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewdismissalallowance\">[ReviewDismissalAllowance]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissalallowanceedge\">\n      <a href=\"#reviewdismissalallowanceedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissalAllowanceEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewdismissalallowance\">ReviewDismissalAllowance</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewdismissedevent\">\n      <a href=\"#reviewdismissedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewDismissedEvent</h2>\n    <p>Represents a<code>review_dismissed</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessage</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>dismissalMessageHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Identifies the optional message associated with the event, rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>previousReviewState</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewstate\">PullRequestReviewState!</a></code>)</p></td>\n<td><p>Identifies the previous state of the review with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequestCommit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestcommit\">PullRequestCommit</a></code>)</p></td>\n<td><p>Identifies the commit which caused the review to become stale.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>review</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestreview\">PullRequestReview</a></code>)</p></td>\n<td><p>Identifies the review associated with the<code>review_dismissed</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this review dismissed event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequest\">\n      <a href=\"#reviewrequest\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequest</h2>\n    <p>A request for a user to review a pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>asCodeOwner</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this request was created for a code owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>Identifies the pull request associated with this review request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>The reviewer that is requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestconnection\">\n      <a href=\"#reviewrequestconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestConnection</h2>\n    <p>The connection type for ReviewRequest.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequestedge\">[ReviewRequestEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequest\">[ReviewRequest]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedge\">\n      <a href=\"#reviewrequestedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reviewrequest\">ReviewRequest</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestremovedevent\">\n      <a href=\"#reviewrequestremovedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestRemovedEvent</h2>\n    <p>Represents an<code>review_request_removed</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review request was removed.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewrequestedevent\">\n      <a href=\"#reviewrequestedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewRequestedEvent</h2>\n    <p>Represents an<code>review_requested</code>event on a given pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequest</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequest\">PullRequest!</a></code>)</p></td>\n<td><p>PullRequest referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>requestedReviewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#requestedreviewer\">RequestedReviewer</a></code>)</p></td>\n<td><p>Identifies the reviewer whose review was requested.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"reviewstatushovercardcontext\">\n      <a href=\"#reviewstatushovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ReviewStatusHovercardContext</h2>\n    <p>A hovercard context with a message describing the current code review state of the pull\nrequest.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewDecision</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequestreviewdecision\">PullRequestReviewDecision</a></code>)</p></td>\n<td><p>The current status of the pull request with respect to code review.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreply\">\n      <a href=\"#savedreply\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReply</h2>\n    <p>A Saved Reply is text a user can use to reply quickly.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The saved reply body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the saved reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The user that saved this reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyconnection\">\n      <a href=\"#savedreplyconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyConnection</h2>\n    <p>The connection type for SavedReply.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#savedreplyedge\">[SavedReplyEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#savedreply\">[SavedReply]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"savedreplyedge\">\n      <a href=\"#savedreplyedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SavedReplyEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#savedreply\">SavedReply</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemconnection\">\n      <a href=\"#searchresultitemconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemConnection</h2>\n    <p>A list of results that matched against a search query.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>codeCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of pieces of code that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of discussions that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#searchresultitemedge\">[SearchResultItemEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of issues that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#searchresultitem\">[SearchResultItem]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of repositories that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of users that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wikiCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The number of wiki pages that matched the search query.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"searchresultitemedge\">\n      <a href=\"#searchresultitemedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SearchResultItemEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#searchresultitem\">SearchResultItem</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>textMatches</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#textmatch\">[TextMatch]</a></code>)</p></td>\n<td><p>Text matches on the result found.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisory\">\n      <a href=\"#securityadvisory\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisory</h2>\n    <p>A GitHub Security Advisory.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cvss</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cvss\">CVSS!</a></code>)</p></td>\n<td><p>The CVSS associated with this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>cwes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#cweconnection\">CWEConnection!</a></code>)</p></td>\n<td><p>CWEs associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>This is a long plaintext description of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>ghsaId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The GitHub Security Advisory ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>identifiers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisoryidentifier\">[SecurityAdvisoryIdentifier!]!</a></code>)</p></td>\n<td><p>A list of identifiers for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>notificationsPermalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory&apos;s dependabot alerts page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>origin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The organization that originated the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permalink</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The permalink for the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was published.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>references</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisoryreference\">[SecurityAdvisoryReference!]!</a></code>)</p></td>\n<td><p>A list of references for this advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>summary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A short plaintext summary of the advisory.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the advisory was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerabilities</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerabilityconnection\">SecurityVulnerabilityConnection!</a></code>)</p></td>\n<td><p>Vulnerabilities associated with this Advisory.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ecosystem</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem</a></code>)</p>\n<p>An ecosystem to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>package</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>A package name to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>severities</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryseverity\">[SecurityAdvisorySeverity!]</a></code>)</p>\n<p>A list of severities to filter vulnerabilities by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>withdrawnAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>When the advisory was withdrawn, if it has been withdrawn.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryconnection\">\n      <a href=\"#securityadvisoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryConnection</h2>\n    <p>The connection type for SecurityAdvisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisoryedge\">[SecurityAdvisoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisory\">[SecurityAdvisory]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryedge\">\n      <a href=\"#securityadvisoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryidentifier\">\n      <a href=\"#securityadvisoryidentifier\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryIdentifier</h2>\n    <p>A GitHub Security Advisory Identifier.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier type, e.g. GHSA, CVE.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The identifier.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackage\">\n      <a href=\"#securityadvisorypackage\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackage</h2>\n    <p>An individual package.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ecosystem</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryecosystem\">SecurityAdvisoryEcosystem!</a></code>)</p></td>\n<td><p>The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisorypackageversion\">\n      <a href=\"#securityadvisorypackageversion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryPackageVersion</h2>\n    <p>An individual package version.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>identifier</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The package name or version.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityadvisoryreference\">\n      <a href=\"#securityadvisoryreference\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityAdvisoryReference</h2>\n    <p>A GitHub Security Advisory Reference.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A publicly accessible reference.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerability\">\n      <a href=\"#securityvulnerability\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerability</h2>\n    <p>An individual vulnerability within an Advisory.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>advisory</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisory\">SecurityAdvisory!</a></code>)</p></td>\n<td><p>The Advisory associated with this Vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>firstPatchedVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisorypackageversion\">SecurityAdvisoryPackageVersion</a></code>)</p></td>\n<td><p>The first version containing a fix for the vulnerability.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>package</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityadvisorypackage\">SecurityAdvisoryPackage!</a></code>)</p></td>\n<td><p>A description of the vulnerable package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>severity</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#securityadvisoryseverity\">SecurityAdvisorySeverity!</a></code>)</p></td>\n<td><p>The severity of the vulnerability within this package.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When the vulnerability was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>vulnerableVersionRange</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.</p>\n<ul>\n<li><code>= 0.2.0</code> denotes a single vulnerable version.</li>\n<li><code>&lt;= 1.0.8</code> denotes a version range up to and including the specified version</li>\n<li><code>&lt; 0.1.11</code> denotes a version range up to, but excluding, the specified version</li>\n<li><code>&gt;= 4.3.0, &lt; 4.3.5</code> denotes a version range with a known minimum and maximum version.</li>\n<li><code>&gt;= 0.0.1</code> denotes a version range with a known minimum, but no known maximum.</li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityconnection\">\n      <a href=\"#securityvulnerabilityconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityConnection</h2>\n    <p>The connection type for SecurityVulnerability.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerabilityedge\">[SecurityVulnerabilityEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerability\">[SecurityVulnerability]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"securityvulnerabilityedge\">\n      <a href=\"#securityvulnerabilityedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SecurityVulnerabilityEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#securityvulnerability\">SecurityVulnerability</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"smimesignature\">\n      <a href=\"#smimesignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SmimeSignature</h2>\n    <p>Represents an S/MIME signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazerconnection\">\n      <a href=\"#stargazerconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#stargazeredge\">[StargazerEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"stargazeredge\">\n      <a href=\"#stargazeredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StargazerEdge</h2>\n    <p>Represents a user that&apos;s starred a repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryconnection\">\n      <a href=\"#starredrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#starredrepositoryedge\">[StarredRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isOverLimit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is the list of stars for this user truncated? This is true for users that have many stars.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"starredrepositoryedge\">\n      <a href=\"#starredrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StarredRepositoryEdge</h2>\n    <p>Represents a starred repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies when the item was starred.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"status\">\n      <a href=\"#status\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Status</h2>\n    <p>Represents a commit status.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>combinedContexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit this status is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscontext\">StatusContext</a></code>)</p></td>\n<td><p>Looks up an individual status context by context name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The context name.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscontext\">[StatusContext!]!</a></code>)</p></td>\n<td><p>The individual status contexts for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined commit status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollup\">\n      <a href=\"#statuscheckrollup\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollup</h2>\n    <p>Represents the rollup for both the check runs and status for a commit.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>The commit the status and check runs are attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contexts</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscheckrollupcontextconnection\">StatusCheckRollupContextConnection!</a></code>)</p></td>\n<td><p>A list of status contexts and check runs for this commit.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The combined status for the commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextconnection\">\n      <a href=\"#statuscheckrollupcontextconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextConnection</h2>\n    <p>The connection type for StatusCheckRollupContext.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#statuscheckrollupcontextedge\">[StatusCheckRollupContextEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#statuscheckrollupcontext\">[StatusCheckRollupContext]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscheckrollupcontextedge\">\n      <a href=\"#statuscheckrollupcontextedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusCheckRollupContextEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#statuscheckrollupcontext\">StatusCheckRollupContext</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"statuscontext\">\n      <a href=\"#statuscontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>StatusContext</h2>\n    <p>Represents an individual commit status context.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#requirablebypullrequest\">RequirableByPullRequest</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The avatar of the OAuth application or the user that created the status.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n<p>The default value is <code>40</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commit\">Commit</a></code>)</p></td>\n<td><p>This commit this status context is attached to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>context</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>creator</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who created this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isRequired</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this is required to pass before merging for a specific pull request.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The id of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>pullRequestNumber</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The number of the pull request this is required for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#statusstate\">StatusState!</a></code>)</p></td>\n<td><p>The state of this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>targetUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The URL for this status context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submodule\">\n      <a href=\"#submodule\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Submodule</h2>\n    <p>A pointer to a repository at a specific revision embedded inside another repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>branch</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The branch of the upstream submodule for tracking updates.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The git URL of the submodule repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the submodule in .gitmodules.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The path in the superproject that this submodule is located in.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subprojectCommitOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID</a></code>)</p></td>\n<td><p>The commit revision of the subproject repository being tracked by the submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleconnection\">\n      <a href=\"#submoduleconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleConnection</h2>\n    <p>The connection type for Submodule.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submoduleedge\">[SubmoduleEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submodule\">[Submodule]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"submoduleedge\">\n      <a href=\"#submoduleedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubmoduleEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"subscribedevent\">\n      <a href=\"#subscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SubscribedEvent</h2>\n    <p>Represents a<code>subscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"suggestedreviewer\">\n      <a href=\"#suggestedreviewer\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>SuggestedReviewer</h2>\n    <p>A suggestion to review a pull request based on a user&apos;s commit history and review comments.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>isAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past commits?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCommenter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Is this suggestion based on past review comments?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user suggested to review the pull request.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tag\">\n      <a href=\"#tag\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tag</h2>\n    <p>Represents a Git tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The Git tag message.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The Git tag name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>tagger</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gitactor\">GitActor</a></code>)</p></td>\n<td><p>Details about the tag author.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>target</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject!</a></code>)</p></td>\n<td><p>The Git object the tag points to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"team\">\n      <a href=\"#team\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Team</h2>\n    <p>A team of users in an organization.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#memberstatusable\">MemberStatusable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>ancestors</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>A list of teams that are ancestors of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the team&apos;s avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size in pixels of the resulting square image.</p>\n<p>The default value is <code>400</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>childTeams</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamconnection\">TeamConnection!</a></code>)</p></td>\n<td><p>List of child teams belonging to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>immediateOnly</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Whether to list immediate child teams or all descendant child teams.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamorder\">TeamOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>userLogins</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>User logins to filter by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>combinedSlug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the organization and team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>description</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The description of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>Find a team discussion by its number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The sequence number of the discussion to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussionconnection\">TeamDiscussionConnection!</a></code>)</p></td>\n<td><p>A list of team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isPinned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If provided, filters discussions according to whether or not they are pinned.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamdiscussionorder\">TeamDiscussionOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussionsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for team discussions.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editTeamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for editing this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>invitations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationinvitationconnection\">OrganizationInvitationConnection</a></code>)</p></td>\n<td><p>A list of pending invitations for users to this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberStatuses</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatusconnection\">UserStatusConnection!</a></code>)</p></td>\n<td><p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#userstatusorder\">UserStatusOrder</a></code>)</p>\n<p>Ordering options for user statuses returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>members</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teammemberconnection\">TeamMemberConnection!</a></code>)</p></td>\n<td><p>A list of users who are members of this team.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>membership</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teammembershiptype\">TeamMembershipType</a></code>)</p>\n<p>Filter by membership type.</p>\n<p>The default value is <code>ALL</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teammemberorder\">TeamMemberOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teammemberrole\">TeamMemberRole</a></code>)</p>\n<p>Filter by team member role.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>membersUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for the team&apos; members.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>newTeamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL creating a new team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization!</a></code>)</p></td>\n<td><p>The organization that owns this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The parent team of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamprivacy\">TeamPrivacy!</a></code>)</p></td>\n<td><p>The level of privacy the team has.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamrepositoryconnection\">TeamRepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories this team has access to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamrepositoryorder\">TeamRepositoryOrder</a></code>)</p>\n<p>Order for the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>query</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The search string to look for.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationAlgorithm</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teamreviewassignmentalgorithm\">TeamReviewAssignmentAlgorithm</a></code>)</p></td>\n<td><p>What algorithm is used for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationAlgorithm</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationEnabled</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if review assignment is enabled for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationEnabled</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationMemberCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>How many team members are required for review assignment for this team.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationMemberCount</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reviewRequestDelegationNotifyTeam</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>When assigning team members via delegation, whether the entire team should be notified as well.</p>\n\n\n\n\n<div class=\"extended-markdown note border rounded-1 mt-3 mb-4 p-3 color-border-accent-emphasis color-bg-accent f5\">\n<p><b>Preview notice</b></p>\n<p><code>reviewRequestDelegationNotifyTeam</code> is available under the <a href=\"/en/github-ae@latest/graphql/overview/schema-previews#team-review-assignments-preview\">Team review assignments preview</a>. During the preview period, the API may change without notice.</p>\n</div>\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>slug</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The slug corresponding to the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team&apos;s teams.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanAdminister</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Team is adminable by the viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddmemberauditentry\">\n      <a href=\"#teamaddmemberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddMemberAuditEntry</h2>\n    <p>Audit log entry for a team.add_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamaddrepositoryauditentry\">\n      <a href=\"#teamaddrepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamAddRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.add_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamchangeparentteamauditentry\">\n      <a href=\"#teamchangeparentteamauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamChangeParentTeamAuditEntry</h2>\n    <p>Audit log entry for a team.change_parent_team event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeam</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the new parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamNameWas</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWas</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The former parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>parentTeamWasUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the previous parent team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamconnection\">\n      <a href=\"#teamconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamConnection</h2>\n    <p>The connection type for Team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamedge\">[TeamEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">[Team]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussion\">\n      <a href=\"#teamdiscussion\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussion</h2>\n    <p>A team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the discussion&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Identifies the discussion body hash.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>comments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncommentconnection\">TeamDiscussionCommentConnection!</a></code>)</p></td>\n<td><p>A list of comments on this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>fromComment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>When provided, filters the connection such that results begin with the comment with this number.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#teamdiscussioncommentorder\">TeamDiscussionCommentOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commentsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for discussion comments.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPinned</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is pinned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isPrivate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the discussion is only visible to team members and org admins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the discussion within its team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team!</a></code>)</p></td>\n<td><p>The team that defines the context of this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>title</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The title of the discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanPin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the current viewer can pin this discussion.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanSubscribe</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the viewer is able to change their subscription status for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerSubscription</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#subscriptionstate\">SubscriptionState</a></code>)</p></td>\n<td><p>Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncomment\">\n      <a href=\"#teamdiscussioncomment\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionComment</h2>\n    <p>A comment on a team discussion.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#comment\">Comment</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#deletable\">Deletable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#reactable\">Reactable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatable\">Updatable</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#updatablecomment\">UpdatableComment</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>author</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who authored the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>authorAssociation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentauthorassociation\">CommentAuthorAssociation!</a></code>)</p></td>\n<td><p>Author&apos;s association with the comment&apos;s team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>body</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body as Markdown.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The body rendered to HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyText</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The body rendered to text.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bodyVersion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The current version of the body content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdViaEmail</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was created via an email reply.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>discussion</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion!</a></code>)</p></td>\n<td><p>The discussion this comment is about.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited the comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>includesCreatedEdit</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if this comment was edited and includes an edit with the creation data.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lastEditedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>The moment the editor made the last edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the comment number.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publishedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies when the comment was published at.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactionGroups</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactiongroup\">[ReactionGroup!]</a></code>)</p></td>\n<td><p>A list of reactions grouped by content left on the subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>reactions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#reactionconnection\">ReactionConnection!</a></code>)</p></td>\n<td><p>A list of Reactions left on the Issue.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>content</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#reactioncontent\">ReactionContent</a></code>)</p>\n<p>Allows filtering Reactions by emoji.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#reactionorder\">ReactionOrder</a></code>)</p>\n<p>Allows specifying the order in which reactions are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userContentEdits</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditconnection\">UserContentEditConnection</a></code>)</p></td>\n<td><p>A list of edits to this content.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanDelete</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can delete this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanReact</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can user react to this subject.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanUpdate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Check if the current viewer can update this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCannotUpdateReasons</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#commentcannotupdatereason\">[CommentCannotUpdateReason!]!</a></code>)</p></td>\n<td><p>Reasons why the current viewer can not update this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerDidAuthor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Did the viewer author this comment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentconnection\">\n      <a href=\"#teamdiscussioncommentconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentConnection</h2>\n    <p>The connection type for TeamDiscussionComment.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncommentedge\">[TeamDiscussionCommentEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncomment\">[TeamDiscussionComment]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussioncommentedge\">\n      <a href=\"#teamdiscussioncommentedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionCommentEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussioncomment\">TeamDiscussionComment</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionconnection\">\n      <a href=\"#teamdiscussionconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionConnection</h2>\n    <p>The connection type for TeamDiscussion.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussionedge\">[TeamDiscussionEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">[TeamDiscussion]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamdiscussionedge\">\n      <a href=\"#teamdiscussionedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamDiscussionEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamdiscussion\">TeamDiscussion</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamedge\">\n      <a href=\"#teamedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberconnection\">\n      <a href=\"#teammemberconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teammemberedge\">[TeamMemberEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teammemberedge\">\n      <a href=\"#teammemberedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamMemberEdge</h2>\n    <p>Represents a user who is a member of a team.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>memberAccessUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL to the organization&apos;s member access page.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>role</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#teammemberrole\">TeamMemberRole!</a></code>)</p></td>\n<td><p>The role the member has on the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremovememberauditentry\">\n      <a href=\"#teamremovememberauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveMemberAuditEntry</h2>\n    <p>Audit log entry for a team.remove_member event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamremoverepositoryauditentry\">\n      <a href=\"#teamremoverepositoryauditentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRemoveRepositoryAuditEntry</h2>\n    <p>Audit log entry for a team.remove_repository event.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#auditentry\">AuditEntry</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#organizationauditentrydata\">OrganizationAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryauditentrydata\">RepositoryAuditEntryData</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#teamauditentrydata\">TeamAuditEntryData</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>action</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The action name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#auditentryactor\">AuditEntryActor</a></code>)</p></td>\n<td><p>The user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorIp</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The IP address of the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLocation</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#actorlocation\">ActorLocation</a></code>)</p></td>\n<td><p>A readable representation of the actor&apos;s location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The username of the user who initiated the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>actorUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the actor.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#precisedatetime\">PreciseDateTime!</a></code>)</p></td>\n<td><p>The time the action was initiated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isLdapMapped</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Whether the team was mapped to an LDAP Group.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>operationType</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#operationtype\">OperationType</a></code>)</p></td>\n<td><p>The corresponding operation type for the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The Organization associated with the Audit Entry.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the Organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the organization.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>team</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#team\">Team</a></code>)</p></td>\n<td><p>The team associated with the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The name of the team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>teamUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for this team.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user affected by the action.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userLogin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>For actions involving two users, the actor is the initiator and the user is the affected user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP path for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>userUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>The HTTP URL for the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryconnection\">\n      <a href=\"#teamrepositoryconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryConnection</h2>\n    <p>The connection type for Repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#teamrepositoryedge\">[TeamRepositoryEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">[Repository]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"teamrepositoryedge\">\n      <a href=\"#teamrepositoryedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TeamRepositoryEdge</h2>\n    <p>Represents a team repository.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>permission</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorypermission\">RepositoryPermission!</a></code>)</p></td>\n<td><p>The permission level the team has on the repository.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatch\">\n      <a href=\"#textmatch\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatch</h2>\n    <p>A text match within a search result.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>fragment</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The specific text fragment within the property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>highlights</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#textmatchhighlight\">[TextMatchHighlight!]!</a></code>)</p></td>\n<td><p>Highlights within the matched fragment.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>property</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The property matched on.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"textmatchhighlight\">\n      <a href=\"#textmatchhighlight\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TextMatchHighlight</h2>\n    <p>Represents a single highlight in a search result match.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>beginIndice</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text begins.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>endIndice</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>The indice in the fragment where the matched text ends.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>text</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The text matched.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"topic\">\n      <a href=\"#topic\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Topic</h2>\n    <p>A topic aggregates entities that are related to a subject.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#starrable\">Starrable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The topic&apos;s name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>relatedTopics</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#topic\">[Topic!]!</a></code>)</p></td>\n<td><p>A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>How many topics to return.</p>\n<p>The default value is <code>3</code>.</p>\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazerCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns a count of how many stargazers there are on this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>stargazers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#stargazerconnection\">StargazerConnection!</a></code>)</p></td>\n<td><p>A list of users who have starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerHasStarred</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Returns a boolean indicating whether the viewing user has starred this starrable.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"transferredevent\">\n      <a href=\"#transferredevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TransferredEvent</h2>\n    <p>Represents a<code>transferred</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>fromRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>The repository this came from.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"tree\">\n      <a href=\"#tree\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Tree</h2>\n    <p>Represents a Git tree.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>abbreviatedOid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An abbreviated version of the Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this Git object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>entries</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#treeentry\">[TreeEntry!]</a></code>)</p></td>\n<td><p>A list of tree entries.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>The Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the Git object belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"treeentry\">\n      <a href=\"#treeentry\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>TreeEntry</h2>\n    <p>Represents a Git tree entry.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>extension</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The extension of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGenerated</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this tree entry is generated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>mode</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Entry file mode.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>object</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitobject\">GitObject</a></code>)</p></td>\n<td><p>Entry file object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>oid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#gitobjectid\">GitObjectID!</a></code>)</p></td>\n<td><p>Entry file Git object ID.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>path</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The full path of the file.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository!</a></code>)</p></td>\n<td><p>The Repository the tree entry belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>submodule</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#submodule\">Submodule</a></code>)</p></td>\n<td><p>If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Entry file type.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unassignedevent\">\n      <a href=\"#unassignedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnassignedEvent</h2>\n    <p>Represents an<code>unassigned</code>event on any assignable object.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#assignable\">Assignable!</a></code>)</p></td>\n<td><p>Identifies the assignable associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>assignee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#assignee\">Assignee</a></code>)</p></td>\n<td><p>Identifies the user or mannequin that was unassigned.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>Identifies the subject (user) who was unassigned.</p>\n\n\n\n\n\n\n<div class=\"extended-markdown warning border rounded-1 mt-3 mb-4 p-3 color-border-danger color-bg-danger f5\">\n<p><b>Deprecation notice</b></p>\n<p><code>user</code> is deprecated.</p><p>Assignees can now be mannequins. Use the <code>assignee</code> field instead. Removal on 2020-01-01 UTC.</p>\n</div>\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unknownsignature\">\n      <a href=\"#unknownsignature\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnknownSignature</h2>\n    <p>Represents an unknown signature on a Commit or Tag.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#gitsignature\">GitSignature</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email used to sign this object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isValid</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature is valid and verified by GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>payload</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Payload for GPG signing object. Raw ODB object without the signature header.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signature</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>ASCII-armored signature header from object.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>signer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>GitHub user corresponding to the email signing this commit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>state</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gitsignaturestate\">GitSignatureState!</a></code>)</p></td>\n<td><p>The state of this signature. <code>VALID</code> if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>wasSignedByGitHub</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>True if the signature was made with GitHub&apos;s signing key.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlabeledevent\">\n      <a href=\"#unlabeledevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlabeledEvent</h2>\n    <p>Represents an<code>unlabeled</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>label</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#label\">Label!</a></code>)</p></td>\n<td><p>Identifies the label associated with the<code>unlabeled</code>event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>labelable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#labelable\">Labelable!</a></code>)</p></td>\n<td><p>Identifies the <code>Labelable</code> associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unlockedevent\">\n      <a href=\"#unlockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnlockedEvent</h2>\n    <p>Represents an<code>unlocked</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>lockable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#lockable\">Lockable!</a></code>)</p></td>\n<td><p>Object that was unlocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unmarkedasduplicateevent\">\n      <a href=\"#unmarkedasduplicateevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnmarkedAsDuplicateEvent</h2>\n    <p>Represents an<code>unmarked_as_duplicate</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canonical</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The authoritative issue or pull request which has been duplicated by another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>duplicate</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/unions#issueorpullrequest\">IssueOrPullRequest</a></code>)</p></td>\n<td><p>The issue or pull request which has been marked as a duplicate of another.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCrossRepository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Canonical and duplicate belong to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unpinnedevent\">\n      <a href=\"#unpinnedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnpinnedEvent</h2>\n    <p>Represents an<code>unpinned</code>event on a given issue or pull request.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issue</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issue\">Issue!</a></code>)</p></td>\n<td><p>Identifies the issue associated with the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"unsubscribedevent\">\n      <a href=\"#unsubscribedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UnsubscribedEvent</h2>\n    <p>Represents an<code>unsubscribed</code>event on a given <code>Subscribable</code>.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subscribable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#subscribable\">Subscribable!</a></code>)</p></td>\n<td><p>Object referenced by event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"user\">\n      <a href=\"#user\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>User</h2>\n    <p>A user is an individual&apos;s account on GitHub that owns repositories and can make new content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#profileowner\">ProfileOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#projectowner\">ProjectOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorydiscussionauthor\">RepositoryDiscussionAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositorydiscussioncommentauthor\">RepositoryDiscussionCommentAuthor</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#repositoryowner\">RepositoryOwner</a></code>\n      </li>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#uniformresourcelocatable\">UniformResourceLocatable</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>anyPinnableItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Determine if this repository owner has any items that can be pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">PinnableItemType</a></code>)</p>\n<p>Filter to only a particular kind of pinnable item.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>avatarUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public avatar.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>size</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>The size of the resulting square image.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bio</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>bioHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile bio as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>canReceiveOrganizationEmailsWhenNotificationsRestricted</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Could this user receive email notifications, if the organization had notification restrictions enabled?.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to check.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>commitComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#commitcommentconnection\">CommitCommentConnection!</a></code>)</p></td>\n<td><p>A list of commit comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>company</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile company.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>companyHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML!</a></code>)</p></td>\n<td><p>The user&apos;s public profile company as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>contributionsCollection</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#contributionscollection\">ContributionsCollection!</a></code>)</p></td>\n<td><p>The collection of contributions this user has made to different repositories.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>from</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>organizationID</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the organization used to filter contributions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>to</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>email</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The user&apos;s publicly visible profile email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>followers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#followerconnection\">FollowerConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is followed by.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>following</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#followingconnection\">FollowingConnection!</a></code>)</p></td>\n<td><p>A list of users the given user is following.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gist</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gist\">Gist</a></code>)</p></td>\n<td><p>Find gist by repo name.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The gist name to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gistComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistcommentconnection\">GistCommentConnection!</a></code>)</p></td>\n<td><p>A list of gist comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>gists</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#gistconnection\">GistConnection!</a></code>)</p></td>\n<td><p>A list of the Gists the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#gistorder\">GistOrder</a></code>)</p>\n<p>Ordering options for gists returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#gistprivacy\">GistPrivacy</a></code>)</p>\n<p>Filters Gists according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>hovercard</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#hovercard\">Hovercard!</a></code>)</p></td>\n<td><p>The hovercard information for this user in a given context.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>primarySubjectId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>The ID of the subject to get the hovercard in the context of.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isBountyHunter</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Security Bug Bounty.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isCampusExpert</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a participant in the GitHub Campus Experts Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isDeveloperProgramMember</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub Developer Program member.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isEmployee</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a GitHub employee.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isFollowingViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is following the viewer. Inverse of viewer_is_following.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isGitHubStar</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a member of the GitHub Stars Program.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isHireable</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the user has marked themselves as for hire.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isSiteAdmin</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is a site administrator.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>isViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is the viewing user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issueComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issuecommentconnection\">IssueCommentConnection!</a></code>)</p></td>\n<td><p>A list of issue comments made by this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuecommentorder\">IssueCommentOrder</a></code>)</p>\n<p>Ordering options for issue comments returned from the connection.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>issues</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#issueconnection\">IssueConnection!</a></code>)</p></td>\n<td><p>A list of issues associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>filterBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issuefilters\">IssueFilters</a></code>)</p>\n<p>Filtering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for issues returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#issuestate\">[IssueState!]</a></code>)</p>\n<p>A list of states to filter the issues by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>itemShowcase</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#profileitemshowcase\">ProfileItemShowcase!</a></code>)</p></td>\n<td><p>Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>location</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile location.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The username used to login.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s public profile name.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>Find an organization by its login that the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizationVerifiedDomainEmails</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]!</a></code>)</p></td>\n<td><p>Verified email addresses that match verified domains for a specified organization the user is a member of.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>login</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>The login of the organization to match verified domains from.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organizations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organizationconnection\">OrganizationConnection!</a></code>)</p></td>\n<td><p>A list of organizations the user belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnableItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinnable items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pinnableitemconnection\">PinnableItemConnection!</a></code>)</p></td>\n<td><p>A list of repositories and gists this profile owner has pinned to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>types</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pinnableitemtype\">[PinnableItemType!]</a></code>)</p>\n<p>Filter the types of pinned items that are returned.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pinnedItemsRemaining</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Returns how many more items this profile owner can pin to their profile.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>project</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#project\">Project</a></code>)</p></td>\n<td><p>Find project by number.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>number</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p>\n<p>The project number to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#projectconnection\">ProjectConnection!</a></code>)</p></td>\n<td><p>A list of projects under the owner.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#projectorder\">ProjectOrder</a></code>)</p>\n<p>Ordering options for projects returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>search</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Query to search projects by, currently only searching by name.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#projectstate\">[ProjectState!]</a></code>)</p>\n<p>A list of states to filter the projects by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsResourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>projectsUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL listing user&apos;s projects.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>publicKeys</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#publickeyconnection\">PublicKeyConnection!</a></code>)</p></td>\n<td><p>A list of public keys associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pullRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pullrequestconnection\">PullRequestConnection!</a></code>)</p></td>\n<td><p>A list of pull requests associated with this user.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>baseRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The base ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>headRefName</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>The head ref name to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>labels</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">[String!]</a></code>)</p>\n<p>A list of label names to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#issueorder\">IssueOrder</a></code>)</p>\n<p>Ordering options for pull requests returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>states</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#pullrequeststate\">[PullRequestState!]</a></code>)</p>\n<p>A list of states to filter the pull requests by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user owns.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of viewer&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isFork</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they are forks of another repository.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoriesContributedTo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories that the user recently contributed to.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>contributionTypes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositorycontributiontype\">[RepositoryContributionType]</a></code>)</p>\n<p>If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>includeUserRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If true, include user repositories.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repository</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repository\">Repository</a></code>)</p></td>\n<td><p>Find Repository.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>followRenames</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Follow repository renames. If disabled, a repository referenced by its old name will return an error.</p>\n<p>The default value is <code>true</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p>\n<p>Name of Repository to find.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussionComments</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussioncommentconnection\">DiscussionCommentConnection!</a></code>)</p></td>\n<td><p>Discussion comments this user has authored.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>onlyAnswers</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussion comments to only those that were marked as the answer.</p>\n<p>The default value is <code>false</code>.</p>\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussion comments to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>repositoryDiscussions</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#discussionconnection\">DiscussionConnection!</a></code>)</p></td>\n<td><p>Discussions this user has started.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>answered</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#discussionorder\">DiscussionOrder</a></code>)</p>\n<p>Ordering options for discussions returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>repositoryId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#id\">ID</a></code>)</p>\n<p>Filter discussions to only those in a specific repository.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>savedReplies</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#savedreplyconnection\">SavedReplyConnection</a></code>)</p></td>\n<td><p>Replies this user has saved.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#savedreplyorder\">SavedReplyOrder</a></code>)</p>\n<p>The field to order saved replies by.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>starredRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#starredrepositoryconnection\">StarredRepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has starred.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#starorder\">StarOrder</a></code>)</p>\n<p>Order for connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownedByViewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>Filters starred repositories to only return repositories owned by the viewer.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>status</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The user&apos;s description of what they&apos;re currently doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>suspendedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the user was suspended.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>topRepositories</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder!</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>since</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p>\n<p>How far back in time to fetch contributed repositories.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>twitterUsername</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>The user&apos;s Twitter username.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanChangePinnedItems</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the viewer pin repositories and gists to the profile?.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanCreateProjects</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Can the current viewer create new projects on this owner.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerCanFollow</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not the viewer is able to follow the user.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewerIsFollowing</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether or not this user is followed by the viewer. Inverse of is_following_viewer.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>watching</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#repositoryconnection\">RepositoryConnection!</a></code>)</p></td>\n<td><p>A list of repositories the given user is watching.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>affiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>isLocked</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p>\n<p>If non-null, filters repositories according to whether they have been locked.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>orderBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/input-objects#repositoryorder\">RepositoryOrder</a></code>)</p>\n<p>Ordering options for repositories returned from the connection.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>ownerAffiliations</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryaffiliation\">[RepositoryAffiliation]</a></code>)</p>\n<p>Array of owner&apos;s affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>privacy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#repositoryprivacy\">RepositoryPrivacy</a></code>)</p>\n<p>If non-null, filters repositories according to privacy.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>websiteUrl</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI</a></code>)</p></td>\n<td><p>A URL pointing to the user&apos;s public website/blog.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userblockedevent\">\n      <a href=\"#userblockedevent\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserBlockedEvent</h2>\n    <p>Represents a<code>user_blocked</code>event on a given user.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>actor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>Identifies the actor who performed the event.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>blockDuration</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/enums#userblockduration\">UserBlockDuration!</a></code>)</p></td>\n<td><p>Number of days that the user was blocked for.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>subject</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The user who was blocked.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userconnection\">\n      <a href=\"#userconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserConnection</h2>\n    <p>The connection type for User.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#useredge\">[UserEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">[User]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontentedit\">\n      <a href=\"#usercontentedit\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEdit</h2>\n    <p>An edit on user content.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was deleted.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deletedBy</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who deleted this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>diff</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A summary of the changes for this edit.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>When this content was edited.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>editor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#actor\">Actor</a></code>)</p></td>\n<td><p>The actor who edited this content.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditconnection\">\n      <a href=\"#usercontenteditconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditConnection</h2>\n    <p>A list of edits to content.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontenteditedge\">[UserContentEditEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontentedit\">[UserContentEdit]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"usercontenteditedge\">\n      <a href=\"#usercontenteditedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserContentEditEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#usercontentedit\">UserContentEdit</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useredge\">\n      <a href=\"#useredge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEdge</h2>\n    <p>Represents a user.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"useremailmetadata\">\n      <a href=\"#useremailmetadata\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserEmailMetadata</h2>\n    <p>Email attributes from External Identity.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>primary</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean</a></code>)</p></td>\n<td><p>Boolean to identify primary emails.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>type</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>Type of email.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>value</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>Email id.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatus\">\n      <a href=\"#userstatus\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatus</h2>\n    <p>The user&apos;s description of what they&apos;re currently doing.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emoji</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>An emoji summarizing the user&apos;s status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>emojiHTML</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#html\">HTML</a></code>)</p></td>\n<td><p>The status emoji as HTML.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>expiresAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime</a></code>)</p></td>\n<td><p>If set, the status will not be shown after this date.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>indicatesLimitedAvailability</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#boolean\">Boolean!</a></code>)</p></td>\n<td><p>Whether this status indicates the user is not fully available on GitHub.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p></td>\n<td><p>A brief message describing what the user is doing.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>organization</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#organization\">Organization</a></code>)</p></td>\n<td><p>The organization whose members can see this status. If null, this status is publicly visible.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>user</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>The user who has this status.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusconnection\">\n      <a href=\"#userstatusconnection\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusConnection</h2>\n    <p>The connection type for UserStatus.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>edges</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatusedge\">[UserStatusEdge]</a></code>)</p></td>\n<td><p>A list of edges.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>nodes</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatus\">[UserStatus]</a></code>)</p></td>\n<td><p>A list of nodes.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pageInfo</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#pageinfo\">PageInfo!</a></code>)</p></td>\n<td><p>Information to aid in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>totalCount</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>Identifies the total count of items in the connection.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"userstatusedge\">\n      <a href=\"#userstatusedge\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>UserStatusEdge</h2>\n    <p>An edge in a connection.</p>\n  </div>\n\n  <div>\n    \n \n  \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>cursor</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A cursor for use in pagination.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>node</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#userstatus\">UserStatus</a></code>)</p></td>\n<td><p>The item at the end of the edge.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"viewerhovercardcontext\">\n      <a href=\"#viewerhovercardcontext\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>ViewerHovercardContext</h2>\n    <p>A hovercard context with a message describing how the viewer is related.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#hovercardcontext\">HovercardContext</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>message</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>A string describing this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>octicon</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>An octicon to accompany this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>viewer</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#user\">User!</a></code>)</p></td>\n<td><p>Identifies the user who is related to this context.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflow\">\n      <a href=\"#workflow\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>Workflow</h2>\n    <p>A workflow contains meta information about an Actions workflow file.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>name</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String!</a></code>)</p></td>\n<td><p>The name of the workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n\n<div>\n  <div>\n    <h2 id=\"workflowrun\">\n      <a href=\"#workflowrun\" class=\"doctocat-link\"><svg aria-hidden=\"\" role=\"img\" class=\"octicon-link\" viewBox=\"0 0 16 16\" width=\"16\" height=\"16\" fill=\"currentColor\" style=\"display: inline-block; user-select: none; vertical-align: middle\">\n  <path fill-rule=\"evenodd\" d=\"M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z\"/>\n</svg></a>WorkflowRun</h2>\n    <p>A workflow run.</p>\n  </div>\n\n  <div>\n    \n \n \n    <h4/>\n    <ul>\n      \n      <li>\n        <code><a href=\"/en/github-ae@latest/graphql/reference/interfaces#node\">Node</a></code>\n      </li>\n      \n    </ul>\n     \n    <h4>Fields</h4>\n     <table class=\"fields width-full\">\n<thead>\n<tr>\n  <th>Name</th>\n  <th>Description</th>\n</tr>\n</thead>\n<tbody>\n\n<tr>\n<td><p><code>checkSuite</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#checksuite\">CheckSuite!</a></code>)</p></td>\n<td><p>The check suite this workflow run belongs to.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>createdAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was created.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>databaseId</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p></td>\n<td><p>Identifies the primary key from the database.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>deploymentReviews</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentreviewconnection\">DeploymentReviewConnection!</a></code>)</p></td>\n<td><p>The log of deployment reviews.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>pendingDeploymentRequests</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#deploymentrequestconnection\">DeploymentRequestConnection!</a></code>)</p></td>\n<td><p>The pending deployment requests of all check runs in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n<div class=\"border rounded-1 mt-3 mb-3 p-3 color-bg-subtle f5\">\n<h4 class=\"pt-0 mt-0\">Arguments</h4>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>after</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come after the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>before</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#string\">String</a></code>)</p>\n<p>Returns the elements in the list that come before the specified cursor.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>first</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the first <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n<ul class=\"list-style-none pl-0\">\n<li class=\"border-top mt-2\">\n<p class=\"mt-2\"><code>last</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int</a></code>)</p>\n<p>Returns the last <em>n</em> elements from the list.</p>\n\n</li>\n</ul>\n\n</div>\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>resourcePath</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP path for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>runNumber</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#int\">Int!</a></code>)</p></td>\n<td><p>A number that uniquely identifies this workflow run in its parent workflow.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>updatedAt</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#datetime\">DateTime!</a></code>)</p></td>\n<td><p>Identifies the date and time when the object was last updated.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>url</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/scalars#uri\">URI!</a></code>)</p></td>\n<td><p>The HTTP URL for this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n<tr>\n<td><p><code>workflow</code> (<code><a href=\"/en/github-ae@latest/graphql/reference/objects#workflow\">Workflow!</a></code>)</p></td>\n<td><p>The workflow executed in this workflow run.</p>\n\n\n\n\n\n\n\n\n\n\n\n</td>\n</tr>\n\n</tbody>\n</table>\n \n  </div>\n</div>\n",
     "miniToc": [
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#actorlocation\">\n      ActorLocation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#actorlocation\">\n      ActorLocation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#addedtoprojectevent\">\n      AddedToProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#app\">\n      App</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#app\">\n      App</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#assignedevent\">\n      AssignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#assignedevent\">\n      AssignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergedisabledevent\">\n      AutoMergeDisabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergeenabledevent\">\n      AutoMergeEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automergerequest\">\n      AutoMergeRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autorebaseenabledevent\">\n      AutoRebaseEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#autosquashenabledevent\">\n      AutoSquashEnabledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangefailedevent\">\n      AutomaticBaseChangeFailedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#automaticbasechangesucceededevent\">\n      AutomaticBaseChangeSucceededEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefchangedevent\">\n      BaseRefChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefdeletedevent\">\n      BaseRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#baserefforcepushedevent\">\n      BaseRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blame\">\n      Blame</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blame\">\n      Blame</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blamerange\">\n      BlameRange</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blamerange\">\n      BlameRange</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#blob\">\n      Blob</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#blob\">\n      Blob</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bot\">\n      Bot</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bot\">\n      Bot</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionrule\">\n      BranchProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflict\">\n      BranchProtectionRuleConflict</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictconnection\">\n      BranchProtectionRuleConflictConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconflictedge\">\n      BranchProtectionRuleConflictEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleconnection\">\n      BranchProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#branchprotectionruleedge\">\n      BranchProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowance\">\n      BypassForcePushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowance\">\n      BypassForcePushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowanceconnection\">\n      BypassForcePushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowanceconnection\">\n      BypassForcePushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypassforcepushallowanceedge\">\n      BypassForcePushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypassforcepushallowanceedge\">\n      BypassForcePushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowance\">\n      BypassPullRequestAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowance\">\n      BypassPullRequestAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowanceconnection\">\n      BypassPullRequestAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowanceconnection\">\n      BypassPullRequestAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#bypasspullrequestallowanceedge\">\n      BypassPullRequestAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#bypasspullrequestallowanceedge\">\n      BypassPullRequestAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cvss\">\n      CVSS</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cvss\">\n      CVSS</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cwe\">\n      CWE</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cwe\">\n      CWE</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweconnection\">\n      CWEConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweconnection\">\n      CWEConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#cweedge\">\n      CWEEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#cweedge\">\n      CWEEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotation\">\n      CheckAnnotation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationconnection\">\n      CheckAnnotationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationedge\">\n      CheckAnnotationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationposition\">\n      CheckAnnotationPosition</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkannotationspan\">\n      CheckAnnotationSpan</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrun\">\n      CheckRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrun\">\n      CheckRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunconnection\">\n      CheckRunConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkrunedge\">\n      CheckRunEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstep\">\n      CheckStep</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstep\">\n      CheckStep</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepconnection\">\n      CheckStepConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checkstepedge\">\n      CheckStepEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuite\">\n      CheckSuite</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuite\">\n      CheckSuite</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteconnection\">\n      CheckSuiteConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#checksuiteedge\">\n      CheckSuiteEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#closedevent\">\n      ClosedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#closedevent\">\n      ClosedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#codeofconduct\">\n      CodeOfConduct</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commentdeletedevent\">\n      CommentDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commit\">\n      Commit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commit\">\n      Commit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcomment\">\n      CommitComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcomment\">\n      CommitComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentconnection\">\n      CommitCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentedge\">\n      CommitCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcommentthread\">\n      CommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitconnection\">\n      CommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitconnection\">\n      CommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitcontributionsbyrepository\">\n      CommitContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commitedge\">\n      CommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commitedge\">\n      CommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#commithistoryconnection\">\n      CommitHistoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#connectedevent\">\n      ConnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendar\">\n      ContributionCalendar</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarday\">\n      ContributionCalendarDay</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarmonth\">\n      ContributionCalendarMonth</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributioncalendarweek\">\n      ContributionCalendarWeek</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#contributionscollection\">\n      ContributionsCollection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#converttodraftevent\">\n      ConvertToDraftEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertednotetoissueevent\">\n      ConvertedNoteToIssueEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#convertedtodiscussionevent\">\n      ConvertedToDiscussionEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#convertedtodiscussionevent\">\n      ConvertedToDiscussionEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontribution\">\n      CreatedCommitContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionconnection\">\n      CreatedCommitContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdcommitcontributionedge\">\n      CreatedCommitContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontribution\">\n      CreatedIssueContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionconnection\">\n      CreatedIssueContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdissuecontributionedge\">\n      CreatedIssueContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontribution\">\n      CreatedPullRequestContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionconnection\">\n      CreatedPullRequestContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestcontributionedge\">\n      CreatedPullRequestContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontribution\">\n      CreatedPullRequestReviewContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionconnection\">\n      CreatedPullRequestReviewContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdpullrequestreviewcontributionedge\">\n      CreatedPullRequestReviewContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontribution\">\n      CreatedRepositoryContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionconnection\">\n      CreatedRepositoryContributionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#createdrepositorycontributionedge\">\n      CreatedRepositoryContributionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#crossreferencedevent\">\n      CrossReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#demilestonedevent\">\n      DemilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykey\">\n      DeployKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykey\">\n      DeployKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyconnection\">\n      DeployKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploykeyedge\">\n      DeployKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployedevent\">\n      DeployedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployedevent\">\n      DeployedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deployment\">\n      Deployment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deployment\">\n      Deployment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentconnection\">\n      DeploymentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentedge\">\n      DeploymentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentenvironmentchangedevent\">\n      DeploymentEnvironmentChangedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionrule\">\n      DeploymentProtectionRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleconnection\">\n      DeploymentProtectionRuleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentprotectionruleedge\">\n      DeploymentProtectionRuleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequest\">\n      DeploymentRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestconnection\">\n      DeploymentRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrequestedge\">\n      DeploymentRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreview\">\n      DeploymentReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewconnection\">\n      DeploymentReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewedge\">\n      DeploymentReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentreviewerconnection\">\n      DeploymentReviewerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentrevieweredge\">\n      DeploymentReviewerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatus\">\n      DeploymentStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusconnection\">\n      DeploymentStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#deploymentstatusedge\">\n      DeploymentStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#disconnectedevent\">\n      DisconnectedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussion\">\n      Discussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussion\">\n      Discussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategory\">\n      DiscussionCategory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryconnection\">\n      DiscussionCategoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncategoryedge\">\n      DiscussionCategoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncomment\">\n      DiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentconnection\">\n      DiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussioncommentedge\">\n      DiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionconnection\">\n      DiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#discussionedge\">\n      DiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprise\">\n      Enterprise</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprise\">\n      Enterprise</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorconnection\">\n      EnterpriseAdministratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratoredge\">\n      EnterpriseAdministratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitation\">\n      EnterpriseAdministratorInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationconnection\">\n      EnterpriseAdministratorInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseadministratorinvitationedge\">\n      EnterpriseAdministratorInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisebillinginfo\">\n      EnterpriseBillingInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseidentityprovider\">\n      EnterpriseIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberconnection\">\n      EnterpriseMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisememberedge\">\n      EnterpriseMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipconnection\">\n      EnterpriseOrganizationMembershipConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseorganizationmembershipedge\">\n      EnterpriseOrganizationMembershipEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratorconnection\">\n      EnterpriseOutsideCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseoutsidecollaboratoredge\">\n      EnterpriseOutsideCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseownerinfo\">\n      EnterpriseOwnerInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratorconnection\">\n      EnterprisePendingCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingcollaboratoredge\">\n      EnterprisePendingCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationconnection\">\n      EnterprisePendingMemberInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterprisependingmemberinvitationedge\">\n      EnterprisePendingMemberInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfo\">\n      EnterpriseRepositoryInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoconnection\">\n      EnterpriseRepositoryInfoConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriserepositoryinfoedge\">\n      EnterpriseRepositoryInfoEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserverinstallation\">\n      EnterpriseServerInstallation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccount\">\n      EnterpriseServerUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountconnection\">\n      EnterpriseServerUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountedge\">\n      EnterpriseServerUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemail\">\n      EnterpriseServerUserAccountEmail</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailconnection\">\n      EnterpriseServerUserAccountEmailConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountemailedge\">\n      EnterpriseServerUserAccountEmailEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsupload\">\n      EnterpriseServerUserAccountsUpload</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadconnection\">\n      EnterpriseServerUserAccountsUploadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseserveruseraccountsuploadedge\">\n      EnterpriseServerUserAccountsUploadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccount\">\n      EnterpriseUserAccount</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountconnection\">\n      EnterpriseUserAccountConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#enterpriseuseraccountedge\">\n      EnterpriseUserAccountEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environment\">\n      Environment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environment\">\n      Environment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentconnection\">\n      EnvironmentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#environmentedge\">\n      EnvironmentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentity\">\n      ExternalIdentity</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityconnection\">\n      ExternalIdentityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityedge\">\n      ExternalIdentityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentitysamlattributes\">\n      ExternalIdentitySamlAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#externalidentityscimattributes\">\n      ExternalIdentityScimAttributes</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followerconnection\">\n      FollowerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followerconnection\">\n      FollowerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#followingconnection\">\n      FollowingConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#followingconnection\">\n      FollowingConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#generichovercardcontext\">\n      GenericHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gist\">\n      Gist</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gist\">\n      Gist</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcomment\">\n      GistComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcomment\">\n      GistComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentconnection\">\n      GistCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistcommentedge\">\n      GistCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistconnection\">\n      GistConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistconnection\">\n      GistConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistedge\">\n      GistEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistedge\">\n      GistEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gistfile\">\n      GistFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gistfile\">\n      GistFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactor\">\n      GitActor</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactor\">\n      GitActor</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactorconnection\">\n      GitActorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gitactoredge\">\n      GitActorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#githubmetadata\">\n      GitHubMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#gpgsignature\">\n      GpgSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#gpgsignature\">\n      GpgSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefdeletedevent\">\n      HeadRefDeletedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefforcepushedevent\">\n      HeadRefForcePushedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#headrefrestoredevent\">\n      HeadRefRestoredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#hovercard\">\n      Hovercard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#hovercard\">\n      Hovercard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentry\">\n      IpAllowListEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryconnection\">\n      IpAllowListEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ipallowlistentryedge\">\n      IpAllowListEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issue\">\n      Issue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issue\">\n      Issue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecomment\">\n      IssueComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecomment\">\n      IssueComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentconnection\">\n      IssueCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecommentedge\">\n      IssueCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueconnection\">\n      IssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueconnection\">\n      IssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuecontributionsbyrepository\">\n      IssueContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issueedge\">\n      IssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issueedge\">\n      IssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetemplate\">\n      IssueTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineconnection\">\n      IssueTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemedge\">\n      IssueTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsconnection\">\n      IssueTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#issuetimelineitemsedge\">\n      IssueTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#joinedgithubcontribution\">\n      JoinedGitHubContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#label\">\n      Label</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#label\">\n      Label</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labelconnection\">\n      LabelConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labelconnection\">\n      LabelConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledge\">\n      LabelEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledge\">\n      LabelEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#labeledevent\">\n      LabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#labeledevent\">\n      LabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#language\">\n      Language</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#language\">\n      Language</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageconnection\">\n      LanguageConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageconnection\">\n      LanguageConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#languageedge\">\n      LanguageEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#languageedge\">\n      LanguageEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#license\">\n      License</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#license\">\n      License</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#licenserule\">\n      LicenseRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#licenserule\">\n      LicenseRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#lockedevent\">\n      LockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#lockedevent\">\n      LockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mannequin\">\n      Mannequin</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mannequin\">\n      Mannequin</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#markedasduplicateevent\">\n      MarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposclearauditentry\">\n      MembersCanDeleteReposClearAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposdisableauditentry\">\n      MembersCanDeleteReposDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#memberscandeletereposenableauditentry\">\n      MembersCanDeleteReposEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mentionedevent\">\n      MentionedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#mergedevent\">\n      MergedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#mergedevent\">\n      MergedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#migrationsource\">\n      MigrationSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#migrationsource\">\n      MigrationSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestone\">\n      Milestone</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestone\">\n      Milestone</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneconnection\">\n      MilestoneConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestoneedge\">\n      MilestoneEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#milestonedevent\">\n      MilestonedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#movedcolumnsinprojectevent\">\n      MovedColumnsInProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#oauthapplicationcreateauditentry\">\n      OauthApplicationCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddbillingmanagerauditentry\">\n      OrgAddBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgaddmemberauditentry\">\n      OrgAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgblockuserauditentry\">\n      OrgBlockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigdisablecollaboratorsonlyauditentry\">\n      OrgConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgconfigenablecollaboratorsonlyauditentry\">\n      OrgConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgcreateauditentry\">\n      OrgCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisableoauthapprestrictionsauditentry\">\n      OrgDisableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisablesamlauditentry\">\n      OrgDisableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgdisabletwofactorrequirementauditentry\">\n      OrgDisableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenableoauthapprestrictionsauditentry\">\n      OrgEnableOauthAppRestrictionsAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenablesamlauditentry\">\n      OrgEnableSamlAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgenabletwofactorrequirementauditentry\">\n      OrgEnableTwoFactorRequirementAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitememberauditentry\">\n      OrgInviteMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orginvitetobusinessauditentry\">\n      OrgInviteToBusinessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessapprovedauditentry\">\n      OrgOauthAppAccessApprovedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessdeniedauditentry\">\n      OrgOauthAppAccessDeniedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgoauthappaccessrequestedauditentry\">\n      OrgOauthAppAccessRequestedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovebillingmanagerauditentry\">\n      OrgRemoveBillingManagerAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremovememberauditentry\">\n      OrgRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgremoveoutsidecollaboratorauditentry\">\n      OrgRemoveOutsideCollaboratorAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestorememberauditentry\">\n      OrgRestoreMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiporganizationauditentrydata\">\n      OrgRestoreMemberMembershipOrganizationAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershiprepositoryauditentrydata\">\n      OrgRestoreMemberMembershipRepositoryAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgrestoremembermembershipteamauditentrydata\">\n      OrgRestoreMemberMembershipTeamAuditEntryData</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgunblockuserauditentry\">\n      OrgUnblockUserAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatedefaultrepositorypermissionauditentry\">\n      OrgUpdateDefaultRepositoryPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberauditentry\">\n      OrgUpdateMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositorycreationpermissionauditentry\">\n      OrgUpdateMemberRepositoryCreationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#orgupdatememberrepositoryinvitationpermissionauditentry\">\n      OrgUpdateMemberRepositoryInvitationPermissionAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organization\">\n      Organization</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organization\">\n      Organization</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryconnection\">\n      OrganizationAuditEntryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationauditentryedge\">\n      OrganizationAuditEntryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationconnection\">\n      OrganizationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationedge\">\n      OrganizationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationenterpriseownerconnection\">\n      OrganizationEnterpriseOwnerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationenterpriseownerconnection\">\n      OrganizationEnterpriseOwnerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationenterpriseowneredge\">\n      OrganizationEnterpriseOwnerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationenterpriseowneredge\">\n      OrganizationEnterpriseOwnerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationidentityprovider\">\n      OrganizationIdentityProvider</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitation\">\n      OrganizationInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationconnection\">\n      OrganizationInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationinvitationedge\">\n      OrganizationInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberconnection\">\n      OrganizationMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationmemberedge\">\n      OrganizationMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationteamshovercardcontext\">\n      OrganizationTeamsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#organizationshovercardcontext\">\n      OrganizationsHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pageinfo\">\n      PageInfo</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pageinfo\">\n      PageInfo</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#permissionsource\">\n      PermissionSource</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#permissionsource\">\n      PermissionSource</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemconnection\">\n      PinnableItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnableitemedge\">\n      PinnableItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussion\">\n      PinnedDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionconnection\">\n      PinnedDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinneddiscussionedge\">\n      PinnedDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedevent\">\n      PinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissue\">\n      PinnedIssue</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueconnection\">\n      PinnedIssueConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pinnedissueedge\">\n      PinnedIssueEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingdisableauditentry\">\n      PrivateRepositoryForkingDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#privaterepositoryforkingenableauditentry\">\n      PrivateRepositoryForkingEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#profileitemshowcase\">\n      ProfileItemShowcase</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#project\">\n      Project</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#project\">\n      Project</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcard\">\n      ProjectCard</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcard\">\n      ProjectCard</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardconnection\">\n      ProjectCardConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcardedge\">\n      ProjectCardEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumn\">\n      ProjectColumn</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnconnection\">\n      ProjectColumnConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectcolumnedge\">\n      ProjectColumnEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectconnection\">\n      ProjectConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectconnection\">\n      ProjectConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectedge\">\n      ProjectEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectedge\">\n      ProjectEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#projectprogress\">\n      ProjectProgress</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#projectprogress\">\n      ProjectProgress</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickey\">\n      PublicKey</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickey\">\n      PublicKey</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyconnection\">\n      PublicKeyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#publickeyedge\">\n      PublicKeyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequest\">\n      PullRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequest\">\n      PullRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfile\">\n      PullRequestChangedFile</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileconnection\">\n      PullRequestChangedFileConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestchangedfileedge\">\n      PullRequestChangedFileEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommit\">\n      PullRequestCommit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitcommentthread\">\n      PullRequestCommitCommentThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitconnection\">\n      PullRequestCommitConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcommitedge\">\n      PullRequestCommitEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestconnection\">\n      PullRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestcontributionsbyrepository\">\n      PullRequestContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestedge\">\n      PullRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreview\">\n      PullRequestReview</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcomment\">\n      PullRequestReviewComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentconnection\">\n      PullRequestReviewCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcommentedge\">\n      PullRequestReviewCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewconnection\">\n      PullRequestReviewConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewcontributionsbyrepository\">\n      PullRequestReviewContributionsByRepository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewedge\">\n      PullRequestReviewEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthread\">\n      PullRequestReviewThread</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadconnection\">\n      PullRequestReviewThreadConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestreviewthreadedge\">\n      PullRequestReviewThreadEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequestrevisionmarker\">\n      PullRequestRevisionMarker</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttemplate\">\n      PullRequestTemplate</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineconnection\">\n      PullRequestTimelineConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemedge\">\n      PullRequestTimelineItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsconnection\">\n      PullRequestTimelineItemsConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pullrequesttimelineitemsedge\">\n      PullRequestTimelineItemsEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#push\">\n      Push</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#push\">\n      Push</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowance\">\n      PushAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowance\">\n      PushAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceconnection\">\n      PushAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#pushallowanceedge\">\n      PushAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ratelimit\">\n      RateLimit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ratelimit\">\n      RateLimit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguserconnection\">\n      ReactingUserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactinguseredge\">\n      ReactingUserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reaction\">\n      Reaction</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reaction\">\n      Reaction</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionconnection\">\n      ReactionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactionedge\">\n      ReactionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactionedge\">\n      ReactionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactiongroup\">\n      ReactionGroup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactorconnection\">\n      ReactorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reactoredge\">\n      ReactorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reactoredge\">\n      ReactorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#readyforreviewevent\">\n      ReadyForReviewEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#ref\">\n      Ref</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#ref\">\n      Ref</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refconnection\">\n      RefConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refconnection\">\n      RefConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refedge\">\n      RefEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refedge\">\n      RefEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#refupdaterule\">\n      RefUpdateRule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#referencedevent\">\n      ReferencedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#release\">\n      Release</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#release\">\n      Release</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseasset\">\n      ReleaseAsset</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetconnection\">\n      ReleaseAssetConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseassetedge\">\n      ReleaseAssetEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseconnection\">\n      ReleaseConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#releaseedge\">\n      ReleaseEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#removedfromprojectevent\">\n      RemovedFromProjectEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#renamedtitleevent\">\n      RenamedTitleEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reopenedevent\">\n      ReopenedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaccessauditentry\">\n      RepoAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddmemberauditentry\">\n      RepoAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoaddtopicauditentry\">\n      RepoAddTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoarchivedauditentry\">\n      RepoArchivedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repochangemergesettingauditentry\">\n      RepoChangeMergeSettingAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisableanonymousgitaccessauditentry\">\n      RepoConfigDisableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecollaboratorsonlyauditentry\">\n      RepoConfigDisableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablecontributorsonlyauditentry\">\n      RepoConfigDisableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigdisablesockpuppetdisallowedauditentry\">\n      RepoConfigDisableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenableanonymousgitaccessauditentry\">\n      RepoConfigEnableAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecollaboratorsonlyauditentry\">\n      RepoConfigEnableCollaboratorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablecontributorsonlyauditentry\">\n      RepoConfigEnableContributorsOnlyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigenablesockpuppetdisallowedauditentry\">\n      RepoConfigEnableSockpuppetDisallowedAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfiglockanonymousgitaccessauditentry\">\n      RepoConfigLockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repoconfigunlockanonymousgitaccessauditentry\">\n      RepoConfigUnlockAnonymousGitAccessAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repocreateauditentry\">\n      RepoCreateAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repodestroyauditentry\">\n      RepoDestroyAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovememberauditentry\">\n      RepoRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reporemovetopicauditentry\">\n      RepoRemoveTopicAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repository\">\n      Repository</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repository\">\n      Repository</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycodeowners\">\n      RepositoryCodeowners</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycodeowners\">\n      RepositoryCodeowners</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycodeownerserror\">\n      RepositoryCodeownersError</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycodeownerserror\">\n      RepositoryCodeownersError</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratorconnection\">\n      RepositoryCollaboratorConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycollaboratoredge\">\n      RepositoryCollaboratorEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryconnection\">\n      RepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorycontactlink\">\n      RepositoryContactLink</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryedge\">\n      RepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitation\">\n      RepositoryInvitation</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationconnection\">\n      RepositoryInvitationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryinvitationedge\">\n      RepositoryInvitationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigration\">\n      RepositoryMigration</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigration\">\n      RepositoryMigration</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigrationconnection\">\n      RepositoryMigrationConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigrationconnection\">\n      RepositoryMigrationConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorymigrationedge\">\n      RepositoryMigrationEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorymigrationedge\">\n      RepositoryMigrationEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopic\">\n      RepositoryTopic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicconnection\">\n      RepositoryTopicConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositorytopicedge\">\n      RepositoryTopicEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangedisableauditentry\">\n      RepositoryVisibilityChangeDisableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvisibilitychangeenableauditentry\">\n      RepositoryVisibilityChangeEnableAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalert\">\n      RepositoryVulnerabilityAlert</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertconnection\">\n      RepositoryVulnerabilityAlertConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#repositoryvulnerabilityalertedge\">\n      RepositoryVulnerabilityAlertEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#requiredstatuscheckdescription\">\n      RequiredStatusCheckDescription</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#requiredstatuscheckdescription\">\n      RequiredStatusCheckDescription</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#restrictedcontribution\">\n      RestrictedContribution</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowance\">\n      ReviewDismissalAllowance</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceconnection\">\n      ReviewDismissalAllowanceConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissalallowanceedge\">\n      ReviewDismissalAllowanceEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewdismissedevent\">\n      ReviewDismissedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequest\">\n      ReviewRequest</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestconnection\">\n      ReviewRequestConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedge\">\n      ReviewRequestEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestremovedevent\">\n      ReviewRequestRemovedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewrequestedevent\">\n      ReviewRequestedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#reviewstatushovercardcontext\">\n      ReviewStatusHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreply\">\n      SavedReply</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreply\">\n      SavedReply</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyconnection\">\n      SavedReplyConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#savedreplyedge\">\n      SavedReplyEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemconnection\">\n      SearchResultItemConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#searchresultitemedge\">\n      SearchResultItemEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisory\">\n      SecurityAdvisory</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryconnection\">\n      SecurityAdvisoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryedge\">\n      SecurityAdvisoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryidentifier\">\n      SecurityAdvisoryIdentifier</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackage\">\n      SecurityAdvisoryPackage</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisorypackageversion\">\n      SecurityAdvisoryPackageVersion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityadvisoryreference\">\n      SecurityAdvisoryReference</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerability\">\n      SecurityVulnerability</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityconnection\">\n      SecurityVulnerabilityConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#securityvulnerabilityedge\">\n      SecurityVulnerabilityEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#smimesignature\">\n      SmimeSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#smimesignature\">\n      SmimeSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazerconnection\">\n      StargazerConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#stargazeredge\">\n      StargazerEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryconnection\">\n      StarredRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#starredrepositoryedge\">\n      StarredRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#status\">\n      Status</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#status\">\n      Status</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollup\">\n      StatusCheckRollup</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextconnection\">\n      StatusCheckRollupContextConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscheckrollupcontextedge\">\n      StatusCheckRollupContextEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#statuscontext\">\n      StatusContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#statuscontext\">\n      StatusContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submodule\">\n      Submodule</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submodule\">\n      Submodule</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleconnection\">\n      SubmoduleConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#submoduleedge\">\n      SubmoduleEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#subscribedevent\">\n      SubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#suggestedreviewer\">\n      SuggestedReviewer</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tag\">\n      Tag</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tag\">\n      Tag</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#team\">\n      Team</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#team\">\n      Team</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddmemberauditentry\">\n      TeamAddMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamaddrepositoryauditentry\">\n      TeamAddRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamchangeparentteamauditentry\">\n      TeamChangeParentTeamAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamconnection\">\n      TeamConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamconnection\">\n      TeamConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussion\">\n      TeamDiscussion</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncomment\">\n      TeamDiscussionComment</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentconnection\">\n      TeamDiscussionCommentConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussioncommentedge\">\n      TeamDiscussionCommentEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionconnection\">\n      TeamDiscussionConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamdiscussionedge\">\n      TeamDiscussionEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamedge\">\n      TeamEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamedge\">\n      TeamEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberconnection\">\n      TeamMemberConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teammemberedge\">\n      TeamMemberEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremovememberauditentry\">\n      TeamRemoveMemberAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamremoverepositoryauditentry\">\n      TeamRemoveRepositoryAuditEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryconnection\">\n      TeamRepositoryConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#teamrepositoryedge\">\n      TeamRepositoryEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatch\">\n      TextMatch</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatch\">\n      TextMatch</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#textmatchhighlight\">\n      TextMatchHighlight</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#topic\">\n      Topic</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#topic\">\n      Topic</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#transferredevent\">\n      TransferredEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#transferredevent\">\n      TransferredEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#tree\">\n      Tree</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#tree\">\n      Tree</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#treeentry\">\n      TreeEntry</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#treeentry\">\n      TreeEntry</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unassignedevent\">\n      UnassignedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unknownsignature\">\n      UnknownSignature</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlabeledevent\">\n      UnlabeledEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unlockedevent\">\n      UnlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unmarkedasduplicateevent\">\n      UnmarkedAsDuplicateEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unpinnedevent\">\n      UnpinnedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#unsubscribedevent\">\n      UnsubscribedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#user\">\n      User</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#user\">\n      User</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userblockedevent\">\n      UserBlockedEvent</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userconnection\">\n      UserConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userconnection\">\n      UserConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontentedit\">\n      UserContentEdit</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditconnection\">\n      UserContentEditConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#usercontenteditedge\">\n      UserContentEditEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useredge\">\n      UserEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useredge\">\n      UserEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#useremailmetadata\">\n      UserEmailMetadata</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatus\">\n      UserStatus</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatus\">\n      UserStatus</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusconnection\">\n      UserStatusConnection</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#userstatusedge\">\n      UserStatusEdge</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#viewerhovercardcontext\">\n      ViewerHovercardContext</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflow\">\n      Workflow</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflow\">\n      Workflow</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
         "items": []
       },
       {
-        "contents": "<a class=\"d-block width-full\" href=\"#workflowrun\">\n      WorkflowRun</a>",
+        "contents": "<a class=\"d-block width-auto\" href=\"#workflowrun\">\n      WorkflowRun</a>",
         "headingLevel": 2,
         "platform": "",
         "indentationLevel": 0,
diff --git a/lib/graphql/static/schema-dotcom.json b/lib/graphql/static/schema-dotcom.json
index e4b03509f209..1b31fc972e9c 100644
--- a/lib/graphql/static/schema-dotcom.json
+++ b/lib/graphql/static/schema-dotcom.json
@@ -353,6 +353,14 @@
             "id": "securityadvisoryecosystem",
             "kind": "enums",
             "href": "/graphql/reference/enums#securityadvisoryecosystem",
+            "description": "<p>Optional filter for which dependencies should be checked for sponsorable\nowners. Only sponsorable owners of dependencies in this ecosystem will be\nincluded. Used when onlyDependencies = true.</p>\n<p><strong>Upcoming Change on 2022-07-01 UTC</strong>\n<strong>Description:</strong> <code>dependencyEcosystem</code> will be removed. Use the ecosystem argument instead.\n<strong>Reason:</strong> The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.</p>"
+          },
+          {
+            "name": "ecosystem",
+            "type": "DependencyGraphEcosystem",
+            "id": "dependencygraphecosystem",
+            "kind": "enums",
+            "href": "/graphql/reference/enums#dependencygraphecosystem",
             "description": "<p>Optional filter for which dependencies should be checked for sponsorable\nowners. Only sponsorable owners of dependencies in this ecosystem will be\nincluded. Used when onlyDependencies = true.</p>"
           },
           {
@@ -41695,6 +41703,14 @@
           "kind": "scalars",
           "href": "/graphql/reference/scalars#boolean"
         },
+        {
+          "name": "viewerCanMergeAsAdmin",
+          "description": "<p>Indicates whether the viewer can bypass branch protections and merge the pull request immediately.</p>",
+          "type": "Boolean!",
+          "id": "boolean",
+          "kind": "scalars",
+          "href": "/graphql/reference/scalars#boolean"
+        },
         {
           "name": "viewerCanReact",
           "description": "<p>Can user react to this subject.</p>",
@@ -68199,6 +68215,47 @@
         }
       ]
     },
+    {
+      "name": "DependencyGraphEcosystem",
+      "kind": "enums",
+      "id": "dependencygraphecosystem",
+      "href": "/graphql/reference/enums#dependencygraphecosystem",
+      "description": "<p>The possible ecosystems of a dependency graph package.</p>",
+      "values": [
+        {
+          "name": "ACTIONS",
+          "description": "<p>GitHub Actions.</p>"
+        },
+        {
+          "name": "COMPOSER",
+          "description": "<p>PHP packages hosted at packagist.org.</p>"
+        },
+        {
+          "name": "GO",
+          "description": "<p>Go modules.</p>"
+        },
+        {
+          "name": "MAVEN",
+          "description": "<p>Java artifacts hosted at the Maven central repository.</p>"
+        },
+        {
+          "name": "NPM",
+          "description": "<p>JavaScript packages hosted at npmjs.com.</p>"
+        },
+        {
+          "name": "NUGET",
+          "description": "<p>.NET packages hosted at the NuGet Gallery.</p>"
+        },
+        {
+          "name": "PIP",
+          "description": "<p>Python packages hosted at PyPI.org.</p>"
+        },
+        {
+          "name": "RUBYGEMS",
+          "description": "<p>Ruby gems hosted at RubyGems.org.</p>"
+        }
+      ]
+    },
     {
       "name": "DeploymentOrderField",
       "kind": "enums",
@@ -80239,6 +80296,14 @@
       "href": "/graphql/reference/input-objects#startrepositorymigrationinput",
       "description": "<p>Autogenerated input type of StartRepositoryMigration.</p>",
       "inputFields": [
+        {
+          "name": "accessToken",
+          "description": "<p>The Octoshift migration source access token.</p>",
+          "type": "String",
+          "id": "string",
+          "kind": "scalars",
+          "href": "/graphql/reference/scalars#string"
+        },
         {
           "name": "clientMutationId",
           "description": "<p>A unique identifier for the client performing the mutation.</p>",
@@ -80263,6 +80328,14 @@
           "kind": "scalars",
           "href": "/graphql/reference/scalars#string"
         },
+        {
+          "name": "githubPat",
+          "description": "<p>The GitHub personal access token of the user importing to the target repository.</p>",
+          "type": "String",
+          "id": "string",
+          "kind": "scalars",
+          "href": "/graphql/reference/scalars#string"
+        },
         {
           "name": "metadataArchiveUrl",
           "description": "<p>The signed URL to access the user-uploaded metadata archive.</p>",
diff --git a/lib/graphql/static/schema-ghae.json b/lib/graphql/static/schema-ghae.json
index 68ef08850536..3c873de02e2b 100644
--- a/lib/graphql/static/schema-ghae.json
+++ b/lib/graphql/static/schema-ghae.json
@@ -36409,6 +36409,14 @@
           "kind": "scalars",
           "href": "/graphql/reference/scalars#boolean"
         },
+        {
+          "name": "viewerCanMergeAsAdmin",
+          "description": "<p>Indicates whether the viewer can bypass branch protections and merge the pull request immediately.</p>",
+          "type": "Boolean!",
+          "id": "boolean",
+          "kind": "scalars",
+          "href": "/graphql/reference/scalars#boolean"
+        },
         {
           "name": "viewerCanReact",
           "description": "<p>Can user react to this subject.</p>",
@@ -70198,6 +70206,14 @@
       "href": "/graphql/reference/input-objects#startrepositorymigrationinput",
       "description": "<p>Autogenerated input type of StartRepositoryMigration.</p>",
       "inputFields": [
+        {
+          "name": "accessToken",
+          "description": "<p>The Octoshift migration source access token.</p>",
+          "type": "String",
+          "id": "string",
+          "kind": "scalars",
+          "href": "/graphql/reference/scalars#string"
+        },
         {
           "name": "clientMutationId",
           "description": "<p>A unique identifier for the client performing the mutation.</p>",
@@ -70222,6 +70238,14 @@
           "kind": "scalars",
           "href": "/graphql/reference/scalars#string"
         },
+        {
+          "name": "githubPat",
+          "description": "<p>The GitHub personal access token of the user importing to the target repository.</p>",
+          "type": "String",
+          "id": "string",
+          "kind": "scalars",
+          "href": "/graphql/reference/scalars#string"
+        },
         {
           "name": "metadataArchiveUrl",
           "description": "<p>The signed URL to access the user-uploaded metadata archive.</p>",
diff --git a/lib/graphql/static/schema-ghec.json b/lib/graphql/static/schema-ghec.json
index e4b03509f209..1b31fc972e9c 100644
--- a/lib/graphql/static/schema-ghec.json
+++ b/lib/graphql/static/schema-ghec.json
@@ -353,6 +353,14 @@
             "id": "securityadvisoryecosystem",
             "kind": "enums",
             "href": "/graphql/reference/enums#securityadvisoryecosystem",
+            "description": "<p>Optional filter for which dependencies should be checked for sponsorable\nowners. Only sponsorable owners of dependencies in this ecosystem will be\nincluded. Used when onlyDependencies = true.</p>\n<p><strong>Upcoming Change on 2022-07-01 UTC</strong>\n<strong>Description:</strong> <code>dependencyEcosystem</code> will be removed. Use the ecosystem argument instead.\n<strong>Reason:</strong> The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.</p>"
+          },
+          {
+            "name": "ecosystem",
+            "type": "DependencyGraphEcosystem",
+            "id": "dependencygraphecosystem",
+            "kind": "enums",
+            "href": "/graphql/reference/enums#dependencygraphecosystem",
             "description": "<p>Optional filter for which dependencies should be checked for sponsorable\nowners. Only sponsorable owners of dependencies in this ecosystem will be\nincluded. Used when onlyDependencies = true.</p>"
           },
           {
@@ -41695,6 +41703,14 @@
           "kind": "scalars",
           "href": "/graphql/reference/scalars#boolean"
         },
+        {
+          "name": "viewerCanMergeAsAdmin",
+          "description": "<p>Indicates whether the viewer can bypass branch protections and merge the pull request immediately.</p>",
+          "type": "Boolean!",
+          "id": "boolean",
+          "kind": "scalars",
+          "href": "/graphql/reference/scalars#boolean"
+        },
         {
           "name": "viewerCanReact",
           "description": "<p>Can user react to this subject.</p>",
@@ -68199,6 +68215,47 @@
         }
       ]
     },
+    {
+      "name": "DependencyGraphEcosystem",
+      "kind": "enums",
+      "id": "dependencygraphecosystem",
+      "href": "/graphql/reference/enums#dependencygraphecosystem",
+      "description": "<p>The possible ecosystems of a dependency graph package.</p>",
+      "values": [
+        {
+          "name": "ACTIONS",
+          "description": "<p>GitHub Actions.</p>"
+        },
+        {
+          "name": "COMPOSER",
+          "description": "<p>PHP packages hosted at packagist.org.</p>"
+        },
+        {
+          "name": "GO",
+          "description": "<p>Go modules.</p>"
+        },
+        {
+          "name": "MAVEN",
+          "description": "<p>Java artifacts hosted at the Maven central repository.</p>"
+        },
+        {
+          "name": "NPM",
+          "description": "<p>JavaScript packages hosted at npmjs.com.</p>"
+        },
+        {
+          "name": "NUGET",
+          "description": "<p>.NET packages hosted at the NuGet Gallery.</p>"
+        },
+        {
+          "name": "PIP",
+          "description": "<p>Python packages hosted at PyPI.org.</p>"
+        },
+        {
+          "name": "RUBYGEMS",
+          "description": "<p>Ruby gems hosted at RubyGems.org.</p>"
+        }
+      ]
+    },
     {
       "name": "DeploymentOrderField",
       "kind": "enums",
@@ -80239,6 +80296,14 @@
       "href": "/graphql/reference/input-objects#startrepositorymigrationinput",
       "description": "<p>Autogenerated input type of StartRepositoryMigration.</p>",
       "inputFields": [
+        {
+          "name": "accessToken",
+          "description": "<p>The Octoshift migration source access token.</p>",
+          "type": "String",
+          "id": "string",
+          "kind": "scalars",
+          "href": "/graphql/reference/scalars#string"
+        },
         {
           "name": "clientMutationId",
           "description": "<p>A unique identifier for the client performing the mutation.</p>",
@@ -80263,6 +80328,14 @@
           "kind": "scalars",
           "href": "/graphql/reference/scalars#string"
         },
+        {
+          "name": "githubPat",
+          "description": "<p>The GitHub personal access token of the user importing to the target repository.</p>",
+          "type": "String",
+          "id": "string",
+          "kind": "scalars",
+          "href": "/graphql/reference/scalars#string"
+        },
         {
           "name": "metadataArchiveUrl",
           "description": "<p>The signed URL to access the user-uploaded metadata archive.</p>",
diff --git a/lib/graphql/static/upcoming-changes.json b/lib/graphql/static/upcoming-changes.json
index ce6e28308e2a..5f05e73c7389 100644
--- a/lib/graphql/static/upcoming-changes.json
+++ b/lib/graphql/static/upcoming-changes.json
@@ -1,5 +1,33 @@
 {
   "dotcom": {
+    "2022-07-01": [
+      {
+        "location": "Query.sponsorables.dependencyEcosystem",
+        "description": "<p><code>dependencyEcosystem</code> will be removed. Use the ecosystem argument instead.</p>",
+        "reason": "<p>The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.</p>",
+        "date": "2022-07-01",
+        "criticality": "breaking",
+        "owner": "cheshire137"
+      }
+    ],
+    "2022-04-01": [
+      {
+        "location": "Repository.defaultMergeQueue",
+        "description": "<p><code>defaultMergeQueue</code> will be removed. Use <code>Repository.mergeQueue</code> instead.</p>",
+        "reason": "<p><code>defaultMergeQueue</code> will be removed.</p>",
+        "date": "2022-04-01",
+        "criticality": "breaking",
+        "owner": "colinshum"
+      },
+      {
+        "location": "PullRequest.viewerCanOverrideMergeQueue",
+        "description": "<p><code>viewerCanOverrideMergeQueue</code> will be removed. Use PullRequest.viewerCanMergeAsAdmin instead.</p>",
+        "reason": "<p><code>viewer_can_override_merge_queue</code> will be removed</p>",
+        "date": "2022-04-01",
+        "criticality": "breaking",
+        "owner": "cbeaman"
+      }
+    ],
     "2021-10-01": [
       {
         "location": "ReactionGroup.users",
@@ -162,6 +190,34 @@
     ]
   },
   "ghec": {
+    "2022-07-01": [
+      {
+        "location": "Query.sponsorables.dependencyEcosystem",
+        "description": "<p><code>dependencyEcosystem</code> will be removed. Use the ecosystem argument instead.</p>",
+        "reason": "<p>The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.</p>",
+        "date": "2022-07-01",
+        "criticality": "breaking",
+        "owner": "cheshire137"
+      }
+    ],
+    "2022-04-01": [
+      {
+        "location": "Repository.defaultMergeQueue",
+        "description": "<p><code>defaultMergeQueue</code> will be removed. Use <code>Repository.mergeQueue</code> instead.</p>",
+        "reason": "<p><code>defaultMergeQueue</code> will be removed.</p>",
+        "date": "2022-04-01",
+        "criticality": "breaking",
+        "owner": "colinshum"
+      },
+      {
+        "location": "PullRequest.viewerCanOverrideMergeQueue",
+        "description": "<p><code>viewerCanOverrideMergeQueue</code> will be removed. Use PullRequest.viewerCanMergeAsAdmin instead.</p>",
+        "reason": "<p><code>viewer_can_override_merge_queue</code> will be removed</p>",
+        "date": "2022-04-01",
+        "criticality": "breaking",
+        "owner": "cbeaman"
+      }
+    ],
     "2021-10-01": [
       {
         "location": "ReactionGroup.users",
@@ -1058,6 +1114,24 @@
     ]
   },
   "ghae": {
+    "2022-04-01": [
+      {
+        "location": "Repository.defaultMergeQueue",
+        "description": "<p><code>defaultMergeQueue</code> will be removed. Use <code>Repository.mergeQueue</code> instead.</p>",
+        "reason": "<p><code>defaultMergeQueue</code> will be removed.</p>",
+        "date": "2022-04-01",
+        "criticality": "breaking",
+        "owner": "colinshum"
+      },
+      {
+        "location": "PullRequest.viewerCanOverrideMergeQueue",
+        "description": "<p><code>viewerCanOverrideMergeQueue</code> will be removed. Use PullRequest.viewerCanMergeAsAdmin instead.</p>",
+        "reason": "<p><code>viewer_can_override_merge_queue</code> will be removed</p>",
+        "date": "2022-04-01",
+        "criticality": "breaking",
+        "owner": "cbeaman"
+      }
+    ],
     "2021-10-01": [
       {
         "location": "ReactionGroup.users",

From c576b77e9062b099f603670247078e2d5e93f56d Mon Sep 17 00:00:00 2001
From: Peter Bengtsson <mail@peterbe.com>
Date: Mon, 28 Feb 2022 12:10:16 -0500
Subject: [PATCH 2/3] upgrade swr@1.2.2 (#25695)

---
 package-lock.json | 14 +++++++-------
 package.json      |  2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/package-lock.json b/package-lock.json
index 9fae9b4cdbfc..87825a0218cc 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -80,7 +80,7 @@
         "slash": "^4.0.0",
         "strip-html-comments": "^1.0.0",
         "styled-components": "^5.3.3",
-        "swr": "1.1.2",
+        "swr": "1.2.2",
         "ts-dedent": "^2.2.0",
         "unified": "^10.1.0",
         "unist-util-visit": "^4.1.0",
@@ -20646,9 +20646,9 @@
       }
     },
     "node_modules/swr": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/swr/-/swr-1.1.2.tgz",
-      "integrity": "sha512-UsM0eo5T+kRPyWFZtWRx2XR5qzohs/LS4lDC0GCyLpCYFmsfTk28UCVDbOE9+KtoXY4FnwHYiF+ZYEU3hnJ1lQ==",
+      "version": "1.2.2",
+      "resolved": "https://registry.npmjs.org/swr/-/swr-1.2.2.tgz",
+      "integrity": "sha512-ky0BskS/V47GpW8d6RU7CPsr6J8cr7mQD6+do5eky3bM0IyJaoi3vO8UhvrzJaObuTlGhPl2szodeB2dUd76Xw==",
       "peerDependencies": {
         "react": "^16.11.0 || ^17.0.0 || ^18.0.0"
       }
@@ -38518,9 +38518,9 @@
       }
     },
     "swr": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/swr/-/swr-1.1.2.tgz",
-      "integrity": "sha512-UsM0eo5T+kRPyWFZtWRx2XR5qzohs/LS4lDC0GCyLpCYFmsfTk28UCVDbOE9+KtoXY4FnwHYiF+ZYEU3hnJ1lQ==",
+      "version": "1.2.2",
+      "resolved": "https://registry.npmjs.org/swr/-/swr-1.2.2.tgz",
+      "integrity": "sha512-ky0BskS/V47GpW8d6RU7CPsr6J8cr7mQD6+do5eky3bM0IyJaoi3vO8UhvrzJaObuTlGhPl2szodeB2dUd76Xw==",
       "requires": {}
     },
     "symbol-tree": {
diff --git a/package.json b/package.json
index 65bc6ae0ba24..37663c0286c8 100644
--- a/package.json
+++ b/package.json
@@ -82,7 +82,7 @@
     "slash": "^4.0.0",
     "strip-html-comments": "^1.0.0",
     "styled-components": "^5.3.3",
-    "swr": "1.1.2",
+    "swr": "1.2.2",
     "ts-dedent": "^2.2.0",
     "unified": "^10.1.0",
     "unist-util-visit": "^4.1.0",

From 68daed063af01888ca3a2d8f611df2d9db7cf0a6 Mon Sep 17 00:00:00 2001
From: Laura Coursen <lecoursen@github.com>
Date: Mon, 28 Feb 2022 11:16:38 -0600
Subject: [PATCH 3/3] Enterprise bug fixes for the week of 2022-02-21 (#25660)

---
 .../about-self-hosted-runners.md                       |  6 +++---
 .../command-line-utilities.md                          |  2 +-
 ...olicies-for-security-settings-in-your-enterprise.md |  4 +++-
 .../about-ssh-certificate-authorities.md               | 10 ++++++++--
 ...g-your-organizations-ssh-certificate-authorities.md |  4 +++-
 5 files changed, 18 insertions(+), 8 deletions(-)

diff --git a/content/actions/hosting-your-own-runners/about-self-hosted-runners.md b/content/actions/hosting-your-own-runners/about-self-hosted-runners.md
index d2d43e503959..d534059f3cb3 100644
--- a/content/actions/hosting-your-own-runners/about-self-hosted-runners.md
+++ b/content/actions/hosting-your-own-runners/about-self-hosted-runners.md
@@ -31,12 +31,12 @@ Your runner machine connects to {% data variables.product.product_name %} using
 
 For more information about installing and using self-hosted runners, see "[Adding self-hosted runners](/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" and "[Using self-hosted runners in a workflow](/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow)."
 
-## {% ifversion fpt or ghes %}Differences between {% data variables.product.prodname_dotcom %}-hosted and {% elsif ghae %}Characteristics of {% endif %}self-hosted runners
+## {% ifversion fpt or ghec or ghes %}Differences between {% data variables.product.prodname_dotcom %}-hosted and {% elsif ghae %}Characteristics of {% endif %}self-hosted runners
 
-{% ifversion fpt or ghes %}
+{% ifversion fpt or ghec or ghes %}
 {% data variables.product.prodname_dotcom %}-hosted runners offer a quicker, simpler way to run your workflows, while self-hosted{% elsif ghae %}Self-hosted{% endif %} runners are a highly configurable way to run workflows in your own custom environment. {% ifversion ghae %}Self-hosted runners:{% endif %}
 
-{% ifversion fpt or ghes %}
+{% ifversion fpt or ghec or ghes %}
 **{% data variables.product.prodname_dotcom %}-hosted runners:**
 - Receive automatic updates for the operating system, preinstalled packages and tools, and the self-hosted runner application.
 - Are managed and maintained by {% data variables.product.prodname_dotcom %}.
diff --git a/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md b/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md
index e92b04b449dd..dfa5276cbebf 100644
--- a/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md
+++ b/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md
@@ -114,7 +114,7 @@ Allows you to find the universally unique identifier (UUID) of your node in `clu
 ```
 
 {% ifversion ghes %}
-Allows you to exempt a list of users from API rate limits. For more information, see "[Resources in the REST API](/rest/overview/resources-in-the-rest-api#rate-limiting)."
+Allows you to exempt a list of users from API rate limits. A hard limit of 120,000 requests will still apply to these users. For more information, see "[Resources in the REST API](/rest/overview/resources-in-the-rest-api#rate-limiting)."
 
 ``` shell
 $ ghe-config app.github.rate-limiting-exempt-users "<em>hubot</em> <em>github-actions</em>"
diff --git a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md
index de27d99c43a5..0a041f2edecd 100644
--- a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md
+++ b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md
@@ -129,9 +129,11 @@ You can also configure allowed IP addresses for an individual organization. For
 
 You can use a SSH certificate authorities (CA) to allow members of any organization owned by your enterprise to access that organization's repositories using SSH certificates you provide. {% data reusables.organizations.can-require-ssh-cert %} For more information, see "[About SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities)."
 
+{% data reusables.organizations.add-extension-to-cert %}
+
 ### Adding an SSH certificate authority
 
-{% data reusables.organizations.add-extension-to-cert %}
+If you require SSH certificates for your enterprise, enterprise members should use a special URL for Git operations over SSH. For more information, see "[About SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities#about-ssh-urls-with-ssh-certificates)."
 
 {% data reusables.enterprise-accounts.access-enterprise %}
 {% data reusables.enterprise-accounts.settings-tab %}
diff --git a/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md b/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md
index 835e187a8a1b..a75bc1007011 100644
--- a/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md
+++ b/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md
@@ -28,9 +28,15 @@ For example, you can build an internal system that issues a new certificate to y
 Organization members can use their signed certificates for authentication even if you've enforced SAML single sign-on. Unless you make SSH certificates a requirement, organization members can continue to use other means of authentication to access your organization's resources with Git, including their username and password, personal access tokens, and their own SSH keys.
 {% endif %}
 
-Members will not be able to use their certificates to access forks of your repositories that are owned by their user accounts. 
+Members will not be able to use their certificates to access forks of your repositories that are owned by their personal accounts. 
 
-To prevent authentication errors, organization members should use a special URL that includes the organization ID to clone repositories using signed certificates. Anyone with read access to the repository can find this URL on the repository page. For more information, see "[Cloning a repository](/articles/cloning-a-repository)."
+## About SSH URLs with SSH certificates
+
+If your organization requires SSH certificates, to prevent authentication errors, organization members should use a special URL that includes the organization ID when performing Git operations over SSH. This special URL allows the client and server to more easily negotiate which key on the member's computer should be used for authentication. If a member uses the normal URL, which starts with `git@github.com`, the SSH client might offer the wrong key, causing the operation to fail.
+
+Anyone with read access to the repository can find this URL by selecting the **Code** dropdown menu on the main page of the repository, then clicking **Use SSH**.
+
+If your organization doesn't require SSH certificates, members can continue to use their own SSH keys, or other means of authentication. In that case, either the special URL or the normal URL, which starts with `git@github.com`, will work.
 
 ## Issuing certificates
 
diff --git a/content/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities.md b/content/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities.md
index f5eec4c627eb..2603271a40b7 100644
--- a/content/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities.md
+++ b/content/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities.md
@@ -20,9 +20,11 @@ Organization owners can manage an organization's SSH certificate authorities (CA
 
 You can allow members to access your organization's repositories using SSH certificates you provide by adding an SSH CA to your organization. {% data reusables.organizations.can-require-ssh-cert %} For more information, see "[About SSH certificate authorities](/articles/about-ssh-certificate-authorities)."
 
+{% data reusables.organizations.add-extension-to-cert %}
+
 ## Adding an SSH certificate authority
 
-{% data reusables.organizations.add-extension-to-cert %}
+If you require SSH certificates for your enterprise, enterprise members should use a special URL for Git operations over SSH. For more information, see "[About SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities#about-ssh-urls-with-ssh-certificates)."
 
 {% data reusables.profile.access_org %}
 {% data reusables.profile.org_settings %}
